Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-08T12:16:29.000Z (over 1 year ago)
- Last Synced: 2024-03-15T08:22:37.262Z (11 months ago)
- Topics: actions, github-actions, qrcode
- Language: JavaScript
- Homepage:
- Size: 962 KB
- Stars: 8
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QR Code Generator
![units-test](https://github.com/snow-actions/qrcode/workflows/units-test/badge.svg)
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/[email protected]
with:
text: 'https://github.com/snow-actions/qrcode'
path: 'qrcode.png'
```## Examples
```yaml
name: QRCode
on:
push:
branches: [ master ]jobs:
build:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2
with:
ref: qrcode
- uses: snow-actions/[email protected]
with:
text: https://github.com/snow-actions/qrcode
path: qrcode.png
- name: You can commit it.
run: |
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
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
```