-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (36 loc) · 1.08 KB
/
build-firmware.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Build QMK firmware
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
strategy:
fail-fast: false
steps:
- name: Checkout QMK
uses: actions/checkout@v3
with:
repository: sadekbaroudi/qmk_firmware
ref: develop_fingerpunch
submodules: true
- name: Checkout keymap
uses: actions/checkout@v3
with:
path: keyboards/fingerpunch/vulpes_majora/v1/keymaps/${{ github.actor }}
# - name: Checkout Case Modes
# uses: actions/checkout@v3
# with:
# repository: andrewjrae/kyria-keymap
# path: keyboards/splitkb/kyria/keymaps/andrewjrae
- name: Build firmware
run: make fingerpunch/vulpes_majora/v1:${{ github.actor }} FP_TRACKBALL_ENABLE=yes FP_VM_RGB_6COL_WITH_CENTER=yes
- name: Archive firmware
uses: actions/upload-artifact@v3
with:
name: vulpes_majora_v1_${{ github.actor }}
retention-days: 2
path: |
*.hex
*.bin
*.uf2
continue-on-error: true