We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b680f61 commit 1b67953Copy full SHA for 1b67953
.github/workflows/release.yml
@@ -38,12 +38,14 @@ jobs:
38
run: |
39
set -o errexit
40
41
+ REPO_NAME=${GITHUB_REPOSITORY#${GITHUB_REPOSITORY_OWNER}/}
42
+
43
TAG_NAME=$(git describe --exact-match)
44
git tag --list --format='%(contents)' "$TAG_NAME" > RELEASE-NOTES
45
46
for cur_arch in $ARCH; do
- docker build . --platform linux/$cur_arch -t ${{ github.repository_name }}
- docker save ${{ github.repository_name }} -o "${{ github.repository_name }}-$TAG_NAME-$cur_arch.tar"
47
+ docker build . --platform linux/$cur_arch -t $REPO_NAME
48
+ docker save ${{ github.repository_name }} -o "$REPO_NAME-$TAG_NAME-$cur_arch.tar"
49
done
50
51
- name: Create Release
0 commit comments