From 7be36d32850290a105afe81afce5c077645ee625 Mon Sep 17 00:00:00 2001 From: Joel Wachsler Date: Sun, 10 Jul 2022 21:18:33 +0000 Subject: [PATCH] Debug --- .github/workflows/publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3fe2a1a..d75a1c9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,12 +27,13 @@ jobs: echo "::set-output name=should_publish::$SHOULD_PUBLISH" - name: Result - run: "The result is: ${{ steps.create-and-push-tag.outputs.should_publish }}" + run: | + echo "The result is: ${{ steps.create-and-push-tag.outputs.should_publish }}" publish: runs-on: ubuntu-22.04 needs: tag - if: ${{ needs.tag.outputs.should_publish }} == "true" + if: ${{ needs.tag.outputs.should_publish == "true" }} steps: - uses: actions/checkout@v2