Skip to content

Commit 3452949

Browse files
committed
ci(nightly): fixing invalid syntax in workflow
1 parent ccb5480 commit 3452949

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: Get version
3737
id: version
38-
if: 'steps.deploy-nightly.outputs.DEPLOY == "true"'
38+
if: ${{ steps.deploy-nightly.outputs.DEPLOY == "true" }}
3939
run: |
4040
datetime=$(date +%Y%m%d%H)
4141
pkg_version=$(node -p "require('./package.json').version")
@@ -45,7 +45,7 @@ jobs:
4545
echo "VERSION=$version" >> $GITHUB_ENV
4646
4747
- name: Publish Nightly Release
48-
if: 'steps.deploy-nightly.outputs.DEPLOY == "true"'
48+
if: ${{ steps.deploy-nightly.outputs.DEPLOY == "true" }}
4949
run: |
5050
echo "Publishing nightly release ${{ env.VERSION }}"
5151
npm ci
@@ -55,7 +55,7 @@ jobs:
5555
VSCE_PAT: ${{ secrets.VS_MARKETPLACE_TOKEN }}
5656

5757
- name: Create Nightly tag
58-
if: 'steps.deploy-nightly.outputs.DEPLOY == "true"'
58+
if: ${{ steps.deploy-nightly.outputs.DEPLOY == "true" }}
5959
run: |
6060
# git config user.name github-actions
6161
# git config user.email 41898282+github-actions[bot]@users.noreply.github.com

0 commit comments

Comments
 (0)