Skip to content

Commit

Permalink
Fix brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkratz committed Jul 3, 2023
1 parent 8cabb2f commit 52892fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ jobs:
# maxkratz/texlive:${{ matrix.year }}
# maxkratz/texlive:latest
# platforms: linux/amd64,linux/arm64,linux/arm/v7
- if: $matrix.year != '$LATEST_TAG'
- if: ${{matrix.year}} != '$LATEST_TAG'
name: Test env 1
run: |
echo "First if"
echo $matrix.year
echo ${{matrix.year}}
echo $LATEST_TAG
- if: $matrix.year == '$LATEST_TAG'
- if: ${{matrix.year}} == '$LATEST_TAG'
name: Test env 2
run: |
echo "Second if"
echo $matrix.year
echo ${{matrix.year}}
echo $LATEST_TAG
# # 2016 can not be built with arm64 support
Expand Down

0 comments on commit 52892fc

Please sign in to comment.