mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
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
This commit is contained in:
parent
14573d2c2d
commit
e332bb1728
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -20,7 +20,7 @@ jobs:
|
|||||||
- run: "./bin/test.sh"
|
- run: "./bin/test.sh"
|
||||||
build-prerelease:
|
build-prerelease:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.ref == "refs/heads/master"
|
if: github.ref == 'refs/heads/master'
|
||||||
needs: test
|
needs: test
|
||||||
env:
|
env:
|
||||||
TW5_BUILD_TIDDLYWIKI: "./tiddlywiki.js"
|
TW5_BUILD_TIDDLYWIKI: "./tiddlywiki.js"
|
||||||
@ -45,7 +45,7 @@ jobs:
|
|||||||
TRAVIS_BUILD_NUMBER: ${{ github.run_number }}
|
TRAVIS_BUILD_NUMBER: ${{ github.run_number }}
|
||||||
build-tiddlywiki-com:
|
build-tiddlywiki-com:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.ref == "refs/heads/tiddlywiki-com"
|
if: github.ref == 'refs/heads/tiddlywiki-com'
|
||||||
needs: test
|
needs: test
|
||||||
env:
|
env:
|
||||||
TW5_BUILD_TIDDLYWIKI: "./node_modules/tiddlywiki/tiddlywiki.js"
|
TW5_BUILD_TIDDLYWIKI: "./node_modules/tiddlywiki/tiddlywiki.js"
|
||||||
|
Loading…
Reference in New Issue
Block a user