-
Notifications
You must be signed in to change notification settings - Fork 473
61 lines (49 loc) · 1.4 KB
/
one47.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: KeyballONE47 firmware
on:
push:
branches:
- '*'
tags:
- 'one47/v[0-9]+.[0-9]+.[0-9]+*'
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Setup QMK firmware
uses: ./.github/actions/setup-qmk
- name: Install a link to own source
run: ln -s $(pwd)/qmk_firmware/keyboards/keyball __qmk__/keyboards/keyball
- run: qmk compile -j 4 -kb keyball/one47 -km default
- run: qmk compile -j 4 -kb keyball/one47 -km test
- run: qmk compile -j 4 -kb keyball/one47 -km via
- name: Archive firmwares
uses: actions/upload-artifact@v3
with:
name: one47-firmwares
path: __qmk__/*.hex
release:
name: Release
runs-on: ubuntu-latest
needs: [ build ]
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'one47/v')
steps:
- name: Download built firmwares
uses: actions/download-artifact@v3
with:
name: one47-firmwares
- name: List assets
run: ls -l *.hex
- name: Release
uses: softprops/action-gh-release@v1
with:
draft: true
prerelease: ${{ contains(github.ref_name, '-alpha.') || contains(github.ref_name, '-beta.') }}
files: |
*.hex
fail_on_unmatched_files: true
generate_release_notes: true
append_body: true