We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10652eb commit 367189fCopy full SHA for 367189f
1 file changed
.github/workflows/images.yml
@@ -129,12 +129,9 @@ jobs:
129
130
- name: Generate ARM64 tags
131
id: meta
132
- uses: docker/metadata-action@v5
133
- with:
134
- images: ${{ matrix.image }}
135
- tags: |
136
- type=raw,value=latest-arm64
137
- type=sha,format=long,suffix=-arm64
+ run: |
+ IMAGE="${{ matrix.image }}"
+ echo "tags=${IMAGE}:latest-arm64,${IMAGE}:${{ github.sha }}-arm64" >> $GITHUB_OUTPUT
138
139
- name: Build and push ARM64 to GHCR
140
uses: useblacksmith/build-push-action@v2
0 commit comments