Skip to content

Change packaging command in CI_release.yml #9

Change packaging command in CI_release.yml

Change packaging command in CI_release.yml #9

Workflow file for this run

pool:

Check failure on line 1 in .github/workflows/CI_release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/CI_release.yml

Invalid workflow file

(Line: 1, Col: 1): Unexpected value 'pool', (Line: 4, Col: 1): Unexpected value 'stages', (Line: 1, Col: 1): Required property is missing: jobs
vmImage: 'ubuntu-latest'
stages:
- stage: BuildAndPackage
jobs:
- job: Package
steps:
- task: NodeTool@0
inputs:
versionSource: 'spec'
versionSpec: '22.x'
- task: Npm@1
inputs:
command: 'install'
- task: Npm@1
inputs:
command: 'custom'
customCommand: 'vsce package --out $(Build.ArtifactStagingDirectory)/extension.vsix'