fix(ci): fix linux packages upload (#3569)

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan Quintão 2024-12-20 23:38:28 -05:00 committed by GitHub
parent 72a0f59be3
commit 851f54ea57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -380,14 +380,14 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: packages name: packages
path: dist/navidrome_v* path: dist/navidrome_0*
- id: set-package-list - id: set-package-list
name: Export list of generated packages name: Export list of generated packages
run: | run: |
cd dist cd dist
set +x set +x
ITEMS=$(ls navidrome_v* | sed 's/^navidrome_v[^_]*_linux_//' | jq -R -s -c 'split("\n")[:-1]') ITEMS=$(ls navidrome_0* | sed 's/^navidrome_0[^_]*_linux_//' | jq -R -s -c 'split("\n")[:-1]')
echo $ITEMS echo $ITEMS
echo "package_list=${ITEMS}" >> $GITHUB_OUTPUT echo "package_list=${ITEMS}" >> $GITHUB_OUTPUT
@ -409,7 +409,7 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: navidrome_linux_${{ matrix.item }} name: navidrome_linux_${{ matrix.item }}
path: dist/navidrome_v*_linux_${{ matrix.item }} path: dist/navidrome_0*_linux_${{ matrix.item }}
# delete-artifacts: # delete-artifacts:
# name: Delete unused artifacts # name: Delete unused artifacts

View file

@ -6,8 +6,8 @@ builds:
- id: navidrome - id: navidrome
# Instead of compiling the binary with goreleaser, we just copy it from `binaries` folder # Instead of compiling the binary with goreleaser, we just copy it from `binaries` folder
# This is because we need to compile the binaries with our Dockerfile, and to avoid having to # This is because we need to compile the binaries with our Dockerfile, and to avoid having to
# compile it twice, we just copy the docker build output.env. The xxgo script handles this for us # compile it twice, we just copy the docker build output. The xxgo script handles this for us
gobinary: "./release/xxgo" tool: "./release/xxgo"
# All available targets compiled by the Dockerfile # All available targets compiled by the Dockerfile
targets: targets:
@ -31,7 +31,7 @@ checksum:
name_template: "{{ .ProjectName }}_checksums.txt" name_template: "{{ .ProjectName }}_checksums.txt"
snapshot: snapshot:
version_template: "{{ .Tag }}-SNAPSHOT" version_template: "{{ .Version }}-SNAPSHOT"
nfpms: nfpms:
- id: navidrome - id: navidrome