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 2e41eb0 commit 28e360fCopy full SHA for 28e360f
.github/workflows/release.yml
@@ -41,10 +41,10 @@ jobs:
41
TAG_NAME=$(git describe --exact-match)
42
git tag --list --format='%(contents)' "$TAG_NAME" > RELEASE-NOTES
43
44
- for arch in $ARCH; do
+ for cur_arch in $ARCH; do
45
docker build . \
46
- --platform "linux/$ARCH" \
47
- --output "type=docker,dest=${{ github.repository_name }}-$TAG_NAME-$ARCH.tar"
+ --platform "linux/$cur_arch" \
+ --output "type=docker,dest=${{ github.repository_name }}-$TAG_NAME-$cur_arch.tar"
48
done
49
50
- name: Create Release
0 commit comments