gorelease fixes

This commit is contained in:
Evan Jarrett
2025-10-12 23:07:28 -05:00
parent ab7e0f07ac
commit 386dcb9297
3 changed files with 3 additions and 6 deletions
+1
View File
@@ -1,5 +1,6 @@
# Binaries
bin/
dist/
# Test artifacts
.atcr-pids
-4
View File
@@ -29,7 +29,6 @@ builds:
archives:
- id: credential-helper
format: tar.gz
name_template: >-
docker-credential-atcr_
{{- .Version }}_
@@ -37,9 +36,6 @@ archives:
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
files:
- LICENSE*
- README*
Regular → Executable
+2 -2
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e
TAG_HASH=$(git rev-parse "$TAG"^{tag}) &&
goat account login -u evan.jarrett.net -p "${APP_PASSWORD}"
TAG_HASH=$(git rev-parse "$TAG") &&
TAG_BYTES=$(echo -n "$TAG_HASH" | xxd -r -p | base64 | tr -d '=') &&
BLOB_OUTPUT=$(goat blob upload "$ARTIFACT_PATH") &&
echo "$BLOB_OUTPUT" &&