Skip to content

Commit

Permalink
Context based referencing of vars is awful
Browse files Browse the repository at this point in the history
  • Loading branch information
TimRoe committed Dec 15, 2023
1 parent fd46b2a commit c16e220
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tokens-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ jobs:
echo ${{ vars.BUILD_SUCCESS == 'true' }}
echo ${{ vars.BUILD_SUCCESS == 'false' }}
- name: Tokens Build Succeeded
if: ${{ $BUILD_SUCCESS == 'true' }}
if: ${{ vars.BUILD_SUCCESS == 'true' }}
run: echo Great success!
- name: Tokens Build Failure
# if: needs.tokens-build.outputs.figma-built
if: ${{ $BUILD_SUCCESS == 'false' }}
if: ${{ vars.BUILD_SUCCESS == 'false' }}
run: exit 1

0 comments on commit c16e220

Please sign in to comment.