allow specifying device, list devices, help message #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |