We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1a121 commit 4774556Copy full SHA for 4774556
.github/workflows/build.yml
@@ -100,7 +100,7 @@ jobs:
100
run: yarn nx run extension-integrationtest:integrationtest --configuration=test
101
102
snapshot:
103
- if: ${{ github.event != 'release' }}
+ if: github.event_name != 'release'
104
needs:
105
- unit-test
106
- integration-test
@@ -153,7 +153,7 @@ jobs:
153
retention-days: 10
154
155
publish-marketplace:
156
- if: ${{ github.event == 'release' }}
+ if: github.event_name == 'release'
157
158
159
- lint
@@ -187,7 +187,7 @@ jobs:
187
VSCE_PAT: ${{ secrets.AZURE_ACCESS_TOKEN }}
188
189
publish-npm:
190
191
192
193
0 commit comments