https://github.com/vineyardbovines/qrcode-github-action
Github Action to generate a string QR code
https://github.com/vineyardbovines/qrcode-github-action
Last synced: 7 months ago
JSON representation
Github Action to generate a string QR code
- Host: GitHub
- URL: https://github.com/vineyardbovines/qrcode-github-action
- Owner: vineyardbovines
- Created: 2022-10-14T16:39:21.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T05:30:28.000Z (almost 2 years ago)
- Last Synced: 2024-11-17T21:29:34.015Z (11 months ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QR Code generator
Github action that outputs a string QR code
## Usage
```yml
on: [push]jobs:
hello_world_job:
runs-on: ubuntu-latest
name: Get a QR Code
steps:
- name: Generate a QR code
id: qr
uses: gretzky/qrcode-github-action@v0.1.0- name: Get the QR code
run: echo "${{ steps.qr.outputs.qrcode }}"
```