diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-10-09 01:11:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 01:11:59 -0400 |
commit | 6902511c655e4bd69a57dba25c19e6c040e35614 (patch) | |
tree | d6eee6971c9fa8df04defadee46f2f15be8ec580 | |
parent | f602b9517cb24a949417ef9ee5458ef067c462a6 (diff) | |
parent | 59a804f751a2eec2b62b91fbde1f69535376d63c (diff) |
Merge pull request #252 from petejohanson/actions/upload-uf2-except-proton-c
Upload all UF2 images on GH action build
-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 |