Skip to content

Commit

Permalink
ci: fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
neolynx committed Sep 18, 2024
1 parent 7fcdca8 commit 22b7403
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,15 +227,15 @@ jobs:
cp completion.d/aptly tmp/completion/bash_completion.d/
cp completion.d/_aptly tmp/completion/zsh/vendor-completions/
gzip tmp/man/aptly.1
path="aptly_${{ github.ref_name }}_${{ matrix.goos }}_${{ matrix.goarch }}"
path="aptly_${{ matrix.goos }}_${{ matrix.goarch }}"
mkdir -p $path
mv tmp "$path"
zip -r "$path" . -i "$path/*"
- uses: actions/upload-artifact@v4
with:
name: aptly_${{ github.ref_name }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip
path: aptly_${{ github.ref_name }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip
name: aptly_${{ matrix.goos }}_${{ matrix.goarch }}.zip
path: aptly_${{ matrix.goos }}_${{ matrix.goarch }}.zip

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

0 comments on commit 22b7403

Please sign in to comment.