Skip to content

Commit 84bedd8

Browse files
authored
Add step to publish VSIX artifact in CI workflow
Added a step to publish the VSIX artifact after copying it to the artifact staging directory.
1 parent a148b09 commit 84bedd8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/CI_release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,20 @@ stages:
2323
inputs:
2424
command: 'custom'
2525
customCommand: 'run package'
26+
2627
- script: |
2728
echo "Artifact dir is $ARTIFACT_DIR"
2829
cp vscode-edge-devtools.vsix $(ARTIFACT_DIR)
2930
displayName: 'Copy VSIX to Artifact Staging Directory'
3031
env:
3132
ARTIFACT_DIR: $(ARTIFACT_DIR)
3233
34+
- task: PublishBuildArtifacts@1
35+
inputs:
36+
pathToPublish: '$(ARTIFACT_DIR)'
37+
artifactName: 'vsix-artifact'
38+
publishLocation: 'Container'
39+
displayName: 'Publish VSIX Artifact'
40+
41+
42+

0 commit comments

Comments
 (0)