Skip to content

Commit

Permalink
ci: avoid double zipping
Browse files Browse the repository at this point in the history
  • Loading branch information
neolynx committed Sep 19, 2024
1 parent bc5cca9 commit 00504b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,12 @@ jobs:
run: |
echo ${{ steps.releaseversion.outputs.VERSION }} > VERSION
make release GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }}
unzip build/aptly_${{ steps.releaseversion.outputs.VERSION }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip
- uses: actions/upload-artifact@v4
with:
name: aptly_${{ steps.releaseversion.outputs.VERSION }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip
path: build/aptly_${{ steps.releaseversion.outputs.VERSION }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip
path: aptly_${{ steps.releaseversion.outputs.VERSION }}_${{ matrix.goos }}_${{ matrix.goarch }}

gh-release:
name: "Github Release: ${{ github.ref_name }}"
Expand Down

0 comments on commit 00504b6

Please sign in to comment.