We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cb3610 commit 3152f00Copy full SHA for 3152f00
.github/workflows/CI_release.yml
@@ -1,23 +1,28 @@
1
pool:
2
vmImage: 'ubuntu-latest'
3
4
+variables:
5
+ ARTIFACT_DIR: $(Build.ArtifactStagingDirectory)
6
+
7
stages:
8
- stage: BuildAndPackage
9
jobs:
10
- job: Package
11
steps:
12
+ - script: echo "Artifact dir is $ARTIFACT_DIR"
13
+ env:
14
+ ARTIFACT_DIR: $(ARTIFACT_DIR)
15
16
- task: NodeTool@0
17
inputs:
18
versionSource: 'spec'
19
versionSpec: '22.x'
20
21
- task: Npm@1
22
23
command: 'install'
24
25
26
- command: 'run package'
-
27
+ command: 'custom'
28
+ customCommand: 'run package'
0 commit comments