Skip to content

Commit

Permalink
chore: embed proper version when building development binaries
Browse files Browse the repository at this point in the history
See #132
  • Loading branch information
devgianlu committed Nov 4, 2024
1 parent c77366d commit 307f062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ jobs:
mkdir -p /tmp/out
docker run --rm \
--env COMMIT=${{ github.sha }} \
--env VERSION=${{ github.ref_name }} \
--env VERSION=${{ startsWith(github.ref_name, 'v') && github.ref_name || '' }} \
-v $PWD:/src \
go-librespot-build-${{ matrix.target }}
tar -zcvf /tmp/out/go-librespot_${{ matrix.tar }}.tar.gz go-librespot README.md

0 comments on commit 307f062

Please sign in to comment.