Skip to content

Commit c1c71c2

Browse files
authored
Fix failing image build workflow (#2469)
Problem: The nightly image build workflow that would update the nginx image was failing. Solution: Remove whitespace that caused the platform to be evaluated as a command instead of as a parameter.
1 parent 54a635d commit c1c71c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update-docker-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
base-image: ${{ needs.variables.outputs.nginx_version }}
6060
image: ghcr.io/nginxinc/nginx-gateway-fabric/nginx:${{ needs.variables.outputs.ngf_tag }}
61-
platforms: "linux/arm64, linux/amd64"
61+
platforms: "linux/arm64,linux/amd64"
6262

6363
- id: needs
6464
run: echo "needs-updating=${{ steps.update.outputs.needs-updating }}" >> $GITHUB_OUTPUT
@@ -70,7 +70,7 @@ jobs:
7070
uses: ./.github/workflows/build.yml
7171
with:
7272
image: nginx
73-
platforms: "linux/arm64, linux/amd64"
73+
platforms: "linux/arm64,linux/amd64"
7474
tag: ${{ needs.variables.outputs.ngf_tag }}
7575
permissions:
7676
contents: read # for docker/build-push-action to read repo content

0 commit comments

Comments
 (0)