Skip to content

allow specifying device, list devices, help message #4

allow specifying device, list devices, help message

allow specifying device, list devices, help message #4

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
#
jobs:
# for this file to work you also need to enable read and write perms in the repo settings for actions
# generates a .tar.gz and uploads to releases
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Archive Release
uses: thedoctor0/[email protected]
with:
type: 'tar'
filename: '../release.tar.gz'
exclusions: ''
- name: Upload Release
uses: ncipollo/[email protected]
with:
artifacts: "../release.tar.gz"
token: ${{ secrets.GITHUB_TOKEN }}