Skip to content

Commit f6d0986

Browse files
committed
Fix Release Github Action
1 parent 89a052d commit f6d0986

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
run: yarn nx run extension-integrationtest:integrationtest --configuration=test
101101

102102
snapshot:
103-
if: github.event != 'release'
103+
if: ${{ github.event != 'release' }}
104104
needs:
105105
- unit-test
106106
- integration-test
@@ -153,7 +153,7 @@ jobs:
153153
retention-days: 10
154154

155155
publish-marketplace:
156-
if: github.event == 'release'
156+
if: ${{ github.event == 'release' }}
157157
needs:
158158
- unit-test
159159
- lint
@@ -187,7 +187,7 @@ jobs:
187187
VSCE_PAT: ${{ secrets.AZURE_ACCESS_TOKEN }}
188188

189189
publish-npm:
190-
if: github.event == 'release'
190+
if: ${{ github.event == 'release' }}
191191
needs:
192192
- unit-test
193193
- lint

0 commit comments

Comments
 (0)