Skip to content

Commit

Permalink
fix amd64 condition
Browse files Browse the repository at this point in the history
  • Loading branch information
i-cz authored Mar 9, 2024
1 parent e76956c commit 135d9b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build-amd64:
if: {{ vars.AMD64 == 'true' }}
if: vars.AMD64 == 'true'
name: Build and publish amd64 image
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: gaurav-nelson/github-action-markdown-link-check@v1
build-amd64:
name: Build amd64 image
if: {{ vars.AMD64 == 'true' }}
if: vars.AMD64 == 'true'
runs-on: ubuntu-latest
needs: [dockerlint, markdown-link-check]
steps:
Expand Down

0 comments on commit 135d9b6

Please sign in to comment.