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 25b79bb commit 61818abCopy full SHA for 61818ab
.github/workflows/release.yml
@@ -42,9 +42,11 @@ jobs:
42
git tag --list --format='%(contents)' "$TAG_NAME" > RELEASE-NOTES
43
44
for cur_arch in $ARCH; do
45
- docker buildx build . \
46
- --platform "linux/$cur_arch" \
47
- --output "type=docker,dest=${{ github.repository_name }}-$TAG_NAME-$cur_arch.tar"
+ docker build . --platform linux/$cur_arch -t ${{ github.repository_name }}
+ docker save ${{ github.repository_name }} -o "${{ github.repository_name }}-$TAG_NAME-$cur_arch.tar"
+# docker buildx build . \
48
+# --platform "linux/$cur_arch" \
49
+# --output "type=docker,dest=${{ github.repository_name }}-$TAG_NAME-$cur_arch.tar"
50
done
51
52
- name: Create Release
0 commit comments