Skip to content

Commit

Permalink
Fix syntax error in GHA workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesir87 committed Dec 13, 2024
1 parent a436c48 commit 7cb2152
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-docker-cloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
platforms: ${{ github.event_name == 'pull_request' && "linux/amd64" || "linux/amd64,linux/arm64" }}
platforms: ${{ github.event_name == 'pull_request' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
provenance: mode=max
sbom: true
push: ${{ github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-gha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
platforms: ${{ github.event_name == 'pull_request' && "linux/amd64" || "linux/amd64,linux/arm64" }}
platforms: ${{ github.event_name == 'pull_request' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
provenance: mode=max
sbom: true
push: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit 7cb2152

Please sign in to comment.