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: 29 days ago
JSON representation

QR Code Generator for GitHub Actions.

Awesome Lists containing this project

README

        

# QR Code Generator

[![Test](https://github.com/snow-actions/qrcode/actions/workflows/test.yml/badge.svg)](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/[email protected]
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/[email protected]
with:
text: https://github.com/snow-actions/qrcode
path: qrcode.png
- uses: snow-actions/[email protected]
- 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
```