From 93decfbe6813438ab1edf8b86afbe3ab94b6bc5a Mon Sep 17 00:00:00 2001 From: Zach Goncalves Date: Fri, 25 Aug 2023 22:42:17 -0400 Subject: [PATCH] fix typo --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c76b3d..b6500cf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }}"