An open API service indexing awesome lists of open source software.

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

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 }}"
```