Browse Source

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
xmkb
innovaker 4 years ago committed by Pete Johanson
parent
commit
54cbc07e6e
  1. 1
      .github/workflows/build.yml

1
.github/workflows/build.yml

@ -93,7 +93,6 @@ jobs:
args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=${{ matrix.shield }}"' args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=${{ matrix.shield }}"'
- name: Archive build - name: Archive build
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
if: ${{ matrix.board != 'proton_c' }}
with: with:
name: "${{ matrix.board }}-${{ matrix.shield }}-zmk-uf2" name: "${{ matrix.board }}-${{ matrix.shield }}-zmk-uf2"
path: build/zephyr/zmk.uf2 path: build/zephyr/zmk.uf2

Loading…
Cancel
Save