Skip to content

Commit a148b09

Browse files
authored
Enhance CI_release.yml to copy VSIX artifact
Added step to copy VSIX to Artifact Staging Directory.
1 parent 3152f00 commit a148b09

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/CI_release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ stages:
99
jobs:
1010
- job: Package
1111
steps:
12-
- script: echo "Artifact dir is $ARTIFACT_DIR"
13-
env:
14-
ARTIFACT_DIR: $(ARTIFACT_DIR)
1512

1613
- task: NodeTool@0
1714
inputs:
@@ -26,3 +23,10 @@ stages:
2623
inputs:
2724
command: 'custom'
2825
customCommand: 'run package'
26+
- script: |
27+
echo "Artifact dir is $ARTIFACT_DIR"
28+
cp vscode-edge-devtools.vsix $(ARTIFACT_DIR)
29+
displayName: 'Copy VSIX to Artifact Staging Directory'
30+
env:
31+
ARTIFACT_DIR: $(ARTIFACT_DIR)
32+

0 commit comments

Comments
 (0)