Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zachgoncalves committed Aug 26, 2023
1 parent 808cf7c commit 93decfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
run: test "false" = "${{ steps.notExist.outputs.exists }}"
- name: Result of externalRepoTagExists
if: always()
run: test "true" = "${{ steps.checkTag.externalRepoTagExists.exists }}"
run: test "true" = "${{ steps.externalRepoTagExists.outputs.exists }}"
- name: Result of externalRepoTagNotExists
if: always()
run: test "true" = "${{ steps.externalRepoTagNotExists.outputs.exists }}"
run: test "false" = "${{ steps.externalRepoTagNotExists.outputs.exists }}"
- name: Result of externalRepoNotExists
if: always()
run: test "true" = "${{ steps.externalRepoNotExists.outputs.exists }}"
run: test "false" = "${{ steps.externalRepoNotExists.outputs.exists }}"

0 comments on commit 93decfb

Please sign in to comment.