Skip to content

Commit

Permalink
Update node version
Browse files Browse the repository at this point in the history
  • Loading branch information
josephsumabat committed Jan 8, 2025
1 parent 2655811 commit 7edb245
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unpublish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'

- name: Install vsce
run: npm install -g vsce

- name: Authenticate with Personal Access Token (PAT)
env:
VSCE_PAT: ${{ secrets.MARKETPLACE_TOKEN}}
VSCE_PAT: ${{ secrets.MARKETPLACE_TOKEN }}
run: |
if [ -z "$VSCE_PAT" ]; then
echo "VSCE_PAT secret is not set. Exiting."
Expand All @@ -34,6 +34,6 @@ jobs:
- name: Unpublish extension
env:
VSCE_PAT: ${{ secrets.MARKETPLACE_TOKEN}}
VSCE_PAT: ${{ secrets.MARKETPLACE_TOKEN }}
run: |
vsce unpublish ${{ github.event.inputs['extension-id'] }} --force
vsce unpublish ${{ github.event.inputs['extension-id'] }}

0 comments on commit 7edb245

Please sign in to comment.