Skip to content

Commit 691ae1a

Browse files
authored
Update CI_release.yml with new variable and conditions
Added esrpConnectionName variable and disabled tasks.
1 parent c90bded commit 691ae1a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/CI_release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pool:
33

44
variables:
55
ARTIFACT_DIR: $(Build.ArtifactStagingDirectory)
6+
esrpConnectionName: 'test'
67

78
stages:
89
- stage: BuildAndPackage
@@ -11,22 +12,26 @@ stages:
1112
steps:
1213

1314
- task: NodeTool@0
15+
condition: false
1416
inputs:
1517
versionSource: 'spec'
1618
versionSpec: '22.x'
1719

1820
- task: Npm@1
21+
condition: false
1922
inputs:
2023
command: 'install'
2124

2225
- task: Npm@1
26+
condition: false
2327
inputs:
2428
command: 'custom'
2529
customCommand: 'run package'
2630

2731
- script: |
2832
echo "Artifact dir is $ARTIFACT_DIR"
29-
cp vscode-edge-devtools.vsix $(ARTIFACT_DIR)
33+
echo "Artifact dir is $ARTIFACT_DIR"
34+
# cp vscode-edge-devtools.vsix $(ARTIFACT_DIR)
3035
displayName: 'Copy VSIX to Artifact Staging Directory'
3136
env:
3237
ARTIFACT_DIR: $(ARTIFACT_DIR)
@@ -61,3 +66,4 @@ stages:
6166

6267

6368

69+

0 commit comments

Comments
 (0)