-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (41 loc) · 1.17 KB
/
build.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
43
44
45
46
47
name: QMK firmware build
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
strategy:
fail-fast: false
matrix:
keyboard:
- kinesis/stapelberg
steps:
- name: Disable git safe directory checks
run : git config --global --add safe.directory '*'
- name: Checkout QMK
uses: actions/checkout@v3
with:
repository: qmk/qmk_firmware
submodules: recursive
persist-credentials: false
- name: Checkout userspace
uses: actions/checkout@v3
with:
path: keyboards/kinesis/keymaps/${{ github.actor }}
persist-credentials: false
- name: Build firmware
# run: qmk compile -kb kinesis/stapelberg -km ${{ github.actor }}
run: |
ls -la
find keyboards/kinesis/keymaps/${{ github.actor }}
find keyboards/kinesis/
make kinesis/stapelberg:${{ github.actor }}
- name: Archive firmware
uses: actions/upload-artifact@v3
continue-on-error: true
with:
name: ${{ matrix.keyboard }}_${{ github.run_number }}
path: |
*.hex
*.bin
*.uf2