Merge pull request #343 from Yowkees/upgrade-qmk-0.22.x #184
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: Keyball46 firmware | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- 'keyball46/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/keyball46 -km default | |
- run: qmk compile -j 4 -kb keyball/keyball46 -km test | |
- run: qmk compile -j 4 -kb keyball/keyball46 -km test_Left | |
- run: qmk compile -j 4 -kb keyball/keyball46 -km test_Both | |
- run: qmk compile -j 4 -kb keyball/keyball46 -km via | |
- run: qmk compile -j 4 -kb keyball/keyball46 -km via_Left | |
- run: qmk compile -j 4 -kb keyball/keyball46 -km via_Both | |
- name: Archive firmwares | |
uses: actions/upload-artifact@v3 | |
with: | |
name: keyball46-firmwares | |
path: __qmk__/*.hex | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
needs: [ build ] | |
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'keyball46/v') | |
steps: | |
- name: Download built firmwares | |
uses: actions/download-artifact@v3 | |
with: | |
name: keyball46-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 |