We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c39e26 commit 88cae37Copy full SHA for 88cae37
1 file changed
.github/workflows/CI_release.yml
@@ -2,7 +2,9 @@ pool:
2
vmImage: 'ubuntu-latest'
3
4
variables:
5
- ARTIFACT_DIR: $(Build.ArtifactStagingDirectory)
+ STAGING_DIR: $(Build.ArtifactStagingDirectory)
6
+ ARTIFACT_DIR: '$(STAGING_DIR)/vsix'
7
+
8
9
stages:
10
- stage: BuildAndPackage
@@ -27,6 +29,14 @@ stages:
27
29
command: 'custom'
28
30
customCommand: 'run package'
31
32
+ - script: |
33
+ mkdir -p "$ARTIFACT_DIR"
34
+ echo "Created folder: $ARTIFACT_DIR"
35
+ displayName: 'Create directory on Linux'
36
+ env:
37
+ ARTIFACT_DIR: $(ARTIFACT_DIR)
38
39
40
- script: |
41
echo "Artifact dir is $ARTIFACT_DIR"
42
echo "esrpConnectionName dir is $ESRP_CONNECTION_NAME"
@@ -66,3 +76,4 @@ stages:
66
76
67
77
68
78
79
0 commit comments