From e332bb172848d470fa8c3ca6235a63439a94e96b Mon Sep 17 00:00:00 2001 From: ento Date: Sat, 29 Aug 2020 02:57:05 -0800 Subject: [PATCH] Fix 'if' condition syntax in Actions workflow (#4835) Strings in expressions need to be in single quotes: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#literals --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 055007dc79..26721707f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - run: "./bin/test.sh" build-prerelease: runs-on: ubuntu-latest - if: github.ref == "refs/heads/master" + if: github.ref == 'refs/heads/master' needs: test env: TW5_BUILD_TIDDLYWIKI: "./tiddlywiki.js" @@ -45,7 +45,7 @@ jobs: TRAVIS_BUILD_NUMBER: ${{ github.run_number }} build-tiddlywiki-com: runs-on: ubuntu-latest - if: github.ref == "refs/heads/tiddlywiki-com" + if: github.ref == 'refs/heads/tiddlywiki-com' needs: test env: TW5_BUILD_TIDDLYWIKI: "./node_modules/tiddlywiki/tiddlywiki.js"