We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a98621f commit a83c58dCopy full SHA for a83c58d
eng/pipelines/templates/jobs/vmr-build.yml
@@ -432,6 +432,13 @@ jobs:
432
displayName: Build
433
workingDirectory: $(sourcesPath)
434
435
+ - ${{ if ne(parameters.runOnline, 'True' )}}:
436
+ - script: |
437
+ set -ex
438
+ # Update the owner of the staging directory to the current user
439
+ sudo chown -R $(whoami) $(artifactsStagingDir)
440
+ displayName: Update owner of artifacts staging directory
441
+
442
# Only run tests if enabled
443
- ${{ if eq(parameters.runTests, 'True') }}:
444
# Setup the NuGet sources used by the tests to use private feeds. This is necessary when testing internal-only product
0 commit comments