diff options
author | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-12-02 10:45:08 +0000 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-03 21:10:05 -0500 |
commit | 54cbc07e6eda04322292745796829401ee769142 (patch) | |
tree | d8c821fdf3bb600f75f40580a77e268dd29dc93e /.github | |
parent | 42cdb83823da5031f821d93612f4f79bd447ec95 (diff) |
ci(build): remove proton_c guard from uf2 archive step
Guards conditions aren't strictly required because the build only logs a warning if the file doesn't exist. It still completes successfully.
PR: #463
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2b4def..6ead576 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -93,7 +93,6 @@ jobs: args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=${{ matrix.shield }}"' - name: Archive build uses: actions/upload-artifact@v2 - if: ${{ matrix.board != 'proton_c' }} with: name: "${{ matrix.board }}-${{ matrix.shield }}-zmk-uf2" path: build/zephyr/zmk.uf2 |