Skip to content

Commit

Permalink
try to avoid zip-in-zip artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed May 2, 2024
1 parent 661fc4a commit 5d96d56
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ jobs:
- name: Set up repository
uses: actions/checkout@v4
with:
submodules: false
show-progress: false
fetch-depth: 0
filter: "blob:none"
show-progress: false
submodules: false
- name: Set up compiler
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
# When changing this update what Windows grabs too!
release: '13.2.Rel1'
- name: Build
run: make submodules && make -j$(nproc) all-boards && make drop-pkg
- name: Extract version identifier
run: |
echo >> $GITHUB_ENV "UF2_VERSION_BASE=`git describe --dirty --always --tags`"
- name: Build
run: make submodules && make -j$(nproc) all-boards && mv build/drop build/uf2-samdx1-$(UF2_VERSION_BASE)
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: build/uf2-samdx1-${{ env.UF2_VERSION_BASE }}.zip
name: uf2-samdx1-${{ env.UF2_VERSION_BASE }}.zip
path: build/uf2-samdx1-${{ env.UF2_VERSION_BASE }}
name: uf2-samdx1-${{ env.UF2_VERSION_BASE }}

0 comments on commit 5d96d56

Please sign in to comment.