https://github.com/snow-actions/qrcode
QR Code Generator for GitHub Actions.
https://github.com/snow-actions/qrcode
actions github-actions qrcode
Last synced: 2 months ago
JSON representation
QR Code Generator for GitHub Actions.
- Host: GitHub
- URL: https://github.com/snow-actions/qrcode
- Owner: snow-actions
- License: mit
- Created: 2020-03-27T18:41:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-05-01T12:26:51.000Z (about 1 year ago)
- Last Synced: 2025-07-18T23:32:40.710Z (11 months ago)
- Topics: actions, github-actions, qrcode
- Language: JavaScript
- Homepage:
- Size: 472 KB
- Stars: 10
- Watchers: 2
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QR Code Generator
[](https://github.com/snow-actions/qrcode/actions/workflows/test.yml)
This action generates a QR Code file.
You can use the generated QR Code anywhere - upload to slack, commit to git, etc.
## Usage
```yaml
uses: snow-actions/qrcode@v2.0.0
with:
text: 'https://github.com/snow-actions/qrcode'
path: 'qrcode.png'
```
## Example
```yaml
name: QRCode
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: qrcode
- uses: snow-actions/qrcode@v2.0.0
with:
text: https://github.com/snow-actions/qrcode
path: qrcode.png
- uses: snow-actions/git-config-user@v1.0.0
- name: You can commit it.
run: |
git add qrcode.png
git commit -m "QR Code"
git push origin qrcode
- name: You can upload it to artifact.
uses: actions/upload-artifact@v1
with:
name: qrcode
path: qrcode.png
```