A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gorelease fixes

+3 -6
+1
.gitignore
··· 1 1 # Binaries 2 2 bin/ 3 + dist/ 3 4 4 5 # Test artifacts 5 6 .atcr-pids
-4
.goreleaser.yaml
··· 29 29 30 30 archives: 31 31 - id: credential-helper 32 - format: tar.gz 33 32 name_template: >- 34 33 docker-credential-atcr_ 35 34 {{- .Version }}_ ··· 37 36 {{- if eq .Arch "amd64" }}x86_64 38 37 {{- else if eq .Arch "386" }}i386 39 38 {{- else }}{{ .Arch }}{{ end }} 40 - format_overrides: 41 - - goos: windows 42 - format: zip 43 39 files: 44 40 - LICENSE* 45 41 - README*
+2 -2
scripts/publish-artifact.sh
··· 1 1 #!/usr/bin/env bash 2 2 set -e 3 - 4 - TAG_HASH=$(git rev-parse "$TAG"^{tag}) && 3 + goat account login -u evan.jarrett.net -p "${APP_PASSWORD}" 4 + TAG_HASH=$(git rev-parse "$TAG") && 5 5 TAG_BYTES=$(echo -n "$TAG_HASH" | xxd -r -p | base64 | tr -d '=') && 6 6 BLOB_OUTPUT=$(goat blob upload "$ARTIFACT_PATH") && 7 7 echo "$BLOB_OUTPUT" &&