Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove pipeline updates
  • Loading branch information
gcampbell-msft committed Aug 16, 2024
commit f0eb1cebc8653b366281419d65b021137fcdc3b5
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
# written, but it should be updated when VS Code updates its Node version.
# Node needs to be installed before OS-specific setup so that we can run
# the hash verification script.
- name: Use Node 18.x
- name: Use Node 16.x
uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: 16.x

# On new macos-latest machines, Python 3.9+ is used, and it's causing issues with binding.gyp
- name: Use Python 3.8
Expand Down
4 changes: 2 additions & 2 deletions build/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
zipSources: false
condition: ne(variables['Build.Reason'], 'PullRequest')
- task: NodeTool@0
displayName: Use Node 18.x
displayName: Use Node 16.x
inputs:
versionSpec: 18.x
versionSpec: 16.x
- ${{ if parameters.prerelease }}:
- pwsh: node -e "p=require('./package.json');p.version=p.version.replace(/\.\d+$/,'.'+$(Build.BuildNumber));require('fs').writeFileSync('./package.json',JSON.stringify(p,undefined,2))"
- script: npm install --global gulp node-gyp @vscode/vsce
Expand Down
4 changes: 2 additions & 2 deletions build/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ extends:
- download: current
artifact: extension-vsixes
- task: NodeTool@0
displayName: Use Node 18.x
displayName: Use Node 16.x
inputs:
versionSpec: 18.x
versionSpec: 16.x
- script: npm install --global @vscode/vsce
displayName: Install vsce
- script: for f in $(Pipeline.Workspace)/extension-vsixes/*.vsix; do vsce publish --packagePath $f; done
Expand Down