Skip to content

Commit 7370f53

Browse files
author
Mike Kuykendall
committed
Enable GitHub Packages and comment out VS Code extension job
- Enabled publish-github-packages job (was previously disabled) - Commented out publish-vscode job - manual upload completed today - VS Code extension will be handled manually until API automation is resolved - GitHub Packages should now publish to npm.pkg.github.com
1 parent 02ffce5 commit 7370f53

1 file changed

Lines changed: 49 additions & 50 deletions

File tree

.github/workflows/publish-packages.yml

Lines changed: 49 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -361,55 +361,55 @@ jobs:
361361
env:
362362
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
363363

364-
publish-vscode:
365-
runs-on: ubuntu-latest
366-
steps:
367-
- name: Checkout
368-
uses: actions/checkout@v4
369-
370-
- name: Setup Node.js
371-
uses: actions/setup-node@v4
372-
with:
373-
node-version: '18'
374-
375-
- name: Get version
376-
id: version
377-
run: |
378-
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
379-
echo "version=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT
380-
else
381-
echo "version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
382-
fi
383-
384-
- name: Install vsce
385-
run: npm install -g @vscode/vsce
386-
387-
- name: Update extension version
388-
run: |
389-
cd vscode-extension
390-
npm version ${{ steps.version.outputs.version }} --no-git-tag-version
391-
392-
- name: Install extension dependencies
393-
run: |
394-
cd vscode-extension
395-
npm install
396-
397-
- name: Compile extension
398-
run: |
399-
cd vscode-extension
400-
npm run compile
401-
402-
- name: Package extension
403-
run: |
404-
cd vscode-extension
405-
vsce package
406-
407-
- name: Publish to VS Code Marketplace
408-
run: |
409-
cd vscode-extension
410-
vsce publish --pat ${{ secrets.VSCODE_MARKETPLACE_TOKEN }}
411-
env:
412-
VSCE_PAT: ${{ secrets.VSCODE_MARKETPLACE_TOKEN }}
364+
# publish-vscode:
365+
# runs-on: ubuntu-latest
366+
# steps:
367+
# - name: Checkout
368+
# uses: actions/checkout@v4
369+
#
370+
# - name: Setup Node.js
371+
# uses: actions/setup-node@v4
372+
# with:
373+
# node-version: '18'
374+
#
375+
# - name: Get version
376+
# id: version
377+
# run: |
378+
# if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
379+
# echo "version=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT
380+
# else
381+
# echo "version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
382+
# fi
383+
#
384+
# - name: Install vsce
385+
# run: npm install -g @vscode/vsce
386+
#
387+
# - name: Update extension version
388+
# run: |
389+
# cd vscode-extension
390+
# npm version ${{ steps.version.outputs.version }} --no-git-tag-version
391+
#
392+
# - name: Install extension dependencies
393+
# run: |
394+
# cd vscode-extension
395+
# npm install
396+
#
397+
# - name: Compile extension
398+
# run: |
399+
# cd vscode-extension
400+
# npm run compile
401+
#
402+
# - name: Package extension
403+
# run: |
404+
# cd vscode-extension
405+
# vsce package
406+
#
407+
# - name: Publish to VS Code Marketplace
408+
# run: |
409+
# cd vscode-extension
410+
# vsce publish --pat ${{ secrets.VSCODE_MARKETPLACE_TOKEN }}
411+
# env:
412+
# VSCE_PAT: ${{ secrets.VSCODE_MARKETPLACE_TOKEN }}
413413

414414
publish-snap:
415415
runs-on: ubuntu-latest
@@ -686,7 +686,6 @@ jobs:
686686
687687
publish-github-packages:
688688
runs-on: ubuntu-latest
689-
if: false # Disabled - configuration issues with npm registry
690689
steps:
691690
- name: Checkout
692691
uses: actions/checkout@v4

0 commit comments

Comments
 (0)