Skip to content

chore: updated gitignore #15

chore: updated gitignore

chore: updated gitignore #15

Workflow file for this run

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