Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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-latest

steps:
- 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
```