From 58b3033a6403fcffbb972085ec0581a4fb55c743 Mon Sep 17 00:00:00 2001 From: Brian Cristante <33549821+brcrista@users.noreply.github.com> Date: Wed, 23 Jun 2021 15:27:56 -0400 Subject: [PATCH] steps.if still needs ${{ }} when the expr has operators --- .github/workflows/check-dist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index e8df631..85ca985 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -31,7 +31,7 @@ jobs: # If index.js was different than expected, upload the expected version as an artifact - uses: actions/upload-artifact@v2 - if: steps.diff.conclusion == "failure" + if: ${{ steps.diff.conclusion == "failure" }} with: name: index.js path: dist/index.js