Skip to content

Commit 0747420

Browse files
committed
ops: switch to earlier action
1 parent e49cd74 commit 0747420

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ on:
66

77
jobs:
88
deploy:
9-
runs-on: windows-latest
9+
runs-on: ubuntu-latest
1010
steps:
11-
- name: Publish Extension
12-
uses: cezarypiatek/VsixPublisherAction@1.1
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
1313
with:
14-
extension-file: src\MappingGenerator.Vsix\bin\Release\MappingGenerator.vsix
15-
publish-manifest-file: src\MappingGenerator.Vsix\publishManifest.json
16-
personal-access-code: ${{ secrets.VS_MARKETPLACE_TOKEN }}
14+
node-version: 20
15+
- run: npm ci
16+
- name: Publish to Visual Studio Marketplace
17+
uses: HaaLeo/publish-vscode-extension@v2
18+
with:
19+
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
20+
registryUrl: https://marketplace.visualstudio.com

0 commit comments

Comments
 (0)