build(deps): bump zsa_firmware from 0b6f7f9
to 12c7a1f
#374
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
with: | |
# intentionally don't set it to "recursive" as zsa's submodules are | |
# managed via their Makefile. | |
submodules: true | |
- uses: actions/setup-python@v5.3.0 | |
with: | |
python-version: "3.11.x" | |
cache: pip | |
cache-dependency-path: .github/requirements.txt | |
- name: install CI python deps | |
run: pip install -r .github/requirements.txt | |
- name: build keymap | |
run: make build | |
- uses: actions/upload-artifact@v4.4.3 | |
with: | |
name: moonlander_mcoding.bin | |
path: zsa_firmware/.build/moonlander_mcoding.bin | |
retention-days: 3 |