Skip to content

Commit

Permalink
fix: correctly name packaged release binary (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbreithecker authored Jul 3, 2024
1 parent e8cb38d commit c463e35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ release: ensure_environment ensure_version
CGO_ENABLED=0 GOOS=$$os GOARCH=$$arch go build $(BUILD_FLAGS) -o release/kyved_$(ENV)_"$$os"_"$$arch" ./cmd/kyved; \
touch -a -m -t $(BUILD_TIME) release/kyved_$(ENV)_"$$os"_"$$arch"; \
sha256sum release/kyved_$(ENV)_"$$os"_"$$arch" >> release/release_$(ENV)_checksum; \
tar -C release -cf release/kyved_$(ENV)_"$$os"_"$$arch".tar kyved_$(ENV)_"$$os"_"$$arch"; \
mv release/kyved_$(ENV)_"$$os"_"$$arch" release/kyved; \
tar -C release -cf release/kyved_$(ENV)_"$$os"_"$$arch".tar kyved; \
mv release/kyved release/kyved_$(ENV)_"$$os"_"$$arch"; \
touch -a -m -t $(BUILD_TIME) release/kyved_$(ENV)_"$$os"_"$$arch".tar; \
gzip release/kyved_$(ENV)_"$$os"_"$$arch".tar; \
sha256sum release/kyved_$(ENV)_"$$os"_"$$arch".tar.gz >> release/release_$(ENV)_checksum; \
Expand Down

0 comments on commit c463e35

Please sign in to comment.