mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-09-20 01:04:15 +00:00
gorelease fixes
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
# Binaries
|
||||
bin/
|
||||
dist/
|
||||
|
||||
# Test artifacts
|
||||
.atcr-pids
|
||||
|
||||
@@ -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
@@ -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" &&
|
||||
|
||||
Reference in New Issue
Block a user