lets try using vsce directly instead of a github action

This commit is contained in:
2024-02-16 03:19:18 -08:00
parent 471015d304
commit 5af8ecd25f
2 changed files with 4 additions and 5 deletions

View File

@@ -5,13 +5,12 @@ on:
name: Publish Extension
jobs:
publish:
Publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- uses: nyanotech/vsce-action@53b5728fac290f6e1e722f0e5452f5d768a5c8fb
with:
args: "publish -p $VSCE_TOKEN"
- run: npm i -g @vscode/vsce
- run: "vsce publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}