Skip to content

Commit 6d91e63

Browse files
authored
Create artifact/package directories in pipeline
Add script to create artifact/package directories for debug and release builds.
1 parent 53cbe5e commit 6d91e63

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

eng/azure-pipelines-nightly.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ steps:
1212
useGlobalJson: true
1313
displayName: Use .NET SDK from global.json
1414

15+
# create artifact/package folder
16+
- pwsh: |
17+
New-Item -ItemType Directory -Path artifacts/package/debug -Force
18+
New-Item -ItemType Directory -Path artifacts/package/release -Force
19+
displayName: create folder artifacts/package/$(BuildConfiguration)
20+
1521
- task: NuGetAuthenticate@1
1622
displayName: Authenticate with NuGet feeds
1723

0 commit comments

Comments
 (0)