Skip to content

Commit

Permalink
feat: adding bad-wings autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
ridingintraffic committed Nov 27, 2022
1 parent 8de4d38 commit 777c579
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/firmware_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Build QMK firmware
on:
push:
branches:
- main
- master
- 'develop**'
#paths:
# - 'keyboards/fingerpunch/*'
jobs:

Build:
runs-on: ubuntu-latest
container: qmkfm/qmk_cli
strategy:
fail-fast: false
#matrix:
# keyboard: [ ffkb_byomcu ]
steps:
- name: Checkout QMK
uses: actions/checkout@v3
with:
# change this to your repo
repository: jasonhazel/qmk_hazel
submodules: recursive

#- name: Checkout userspace
# uses: actions/checkout@v3
# with:
# path: users/default

#- name: Finding files and store to output
# id: finding-files
# run: |
# echo "::set-output name=FILELIST::$(qmk list-keyboards| grep fingerpunch)"

- name: Build firmware
run: |
make jasonhazel/bad_wings:default
- name: Archive firmware
uses: actions/upload-artifact@v3
continue-on-error: true
with:
name: ${{ matrix.file }}_${{ github.actor }}
path: |
*.hex
*.bin
*.uf2

0 comments on commit 777c579

Please sign in to comment.