keep button state when report does not contain buttons. #3
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install build deps | |
shell: bash | |
run: | | |
sudo apt-get install -y \ | |
gcc-arm-none-eabi \ | |
libnewlib-arm-none-eabi \ | |
dosfstools | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Render webconfig | |
shell: bash | |
working-directory: webconfig | |
run: make | |
- name: Build disk image | |
shell: bash | |
working-directory: disk | |
run: ./create.sh | |
- name: Build firmware | |
shell: bash | |
run: | | |
cmake -S . -B build | |
cmake --build build | |
- name: Publish artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: deskhop-gha-${{ github.run_number }} | |
path: build/deskhop.uf2 |