chore: updated gitignore #15
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: Main | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
release: | |
# Compiled magic files are incompatible with older and (for whatever | |
# reason) also newer versions of `file`. | |
# Therefore, we only release the concatenated, compressed source file. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Make | |
run: sudo apt-get install make xz-utils | |
- name: Build | |
run: | | |
make firmware | |
xz -f -7 -k firmware | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: firmware.xz |