diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-10-09 01:05:50 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-10-09 01:05:50 -0400 |
commit | 59a804f751a2eec2b62b91fbde1f69535376d63c (patch) | |
tree | d6eee6971c9fa8df04defadee46f2f15be8ec580 /.github/workflows/build.yml | |
parent | f602b9517cb24a949417ef9ee5458ef067c462a6 (diff) |
fix(actions): Upload UF2 for all compatible boards
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 454ab79..60c337d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,7 +75,7 @@ jobs: args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=${{ matrix.shield }}"' - name: Archive Build uses: actions/upload-artifact@v2 - if: ${{ matrix.board == 'nice_nano' }} + if: ${{ matrix.board != 'proton_c' }} with: name: "${{ matrix.board }}-${{ matrix.shield }}-zmk-uf2" path: build/zephyr/zmk.uf2 |