Skip to content

Commit 553ef36

Browse files
committed
Fix Marketplace Publish
1 parent 70176d8 commit 553ef36

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,15 @@ jobs:
176176
run: yarn --pure-lockfile
177177

178178
- name: Create Production Build
179-
run: yarn nx run-many --target=build --configuration=prod --projects=extension
179+
run: yarn nx run extension:build:prod
180180
env:
181181
POSTHOG_HOST: ${{ secrets.POSTHOG_HOST }}
182182
POSTHOG_PROJECT_API_KEY: ${{ secrets.POSTHOG_PROJECT_API_KEY }}
183183

184184
- name: 'Publish to Marketplace'
185-
run: yarn nx run-many --target=publish --projects=extension
185+
run: yarn nx run extension:publish
186186
env:
187-
VSCE_PAT: ${{ secrets.AZURE_ACCESS_TOKEN }}
187+
VSCE_PAT: ${{ secrets.VSCE_PAT }}
188188

189189
publish-npm:
190190
if: github.event_name == 'release'
@@ -210,9 +210,9 @@ jobs:
210210
run: yarn --pure-lockfile
211211

212212
- name: Create Production Build
213-
run: yarn nx run-many --target=build --configuration=prod --projects=runtime-webpack
213+
run: yarn nx run runtime-webpack:build:prod
214214

215215
- name: 'Publish to npm'
216-
run: yarn nx run-many --target=publish --projects=runtime-webpack
216+
run: yarn nx run runtime-webpack:publish
217217
env:
218218
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)