Skip to content

Commit

Permalink
Format like this?
Browse files Browse the repository at this point in the history
  • Loading branch information
TimRoe committed Dec 15, 2023
1 parent b60afc9 commit 93c925f
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 @@ -73,9 +73,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- 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 93c925f

Please sign in to comment.