Skip to content

Commit 421481f

Browse files
committed
fix
1 parent 07136e3 commit 421481f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-linux-release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -180,20 +180,20 @@ jobs:
180180
username: ${{ secrets.GHCR_LOGIN }}
181181
password: ${{ secrets.GHCR_PASSWORD }}
182182

183-
- name: Build and push Docker image for AMD64
183+
- name: Build and push Docker image for ARM64
184184
uses: docker/build-push-action@v4
185185
with:
186-
context: ./docker/amd64
186+
context: ./docker/arm64
187187
push: true
188188
tags: ${{ steps.docker-metadata.outputs.tags }}
189189
labels: ${{ steps.docker-metadata.outputs.labels }}
190-
platforms: linux/amd64
190+
platforms: linux/arm64
191191

192-
- name: Build and push Docker image for ARM64
192+
- name: Build and push Docker image for AMD64
193193
uses: docker/build-push-action@v4
194194
with:
195-
context: ./docker/arm64
195+
context: ./docker/amd64
196196
push: true
197197
tags: ${{ steps.docker-metadata.outputs.tags }}
198198
labels: ${{ steps.docker-metadata.outputs.labels }}
199-
platforms: linux/arm64
199+
platforms: linux/amd64

0 commit comments

Comments
 (0)