Skip to content

Commit 758cab7

Browse files
author
Evans Aboge (from Dev Box)
committed
Fix file reference
1 parent a2964e8 commit 758cab7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.azure-pipelines/ci-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ extends:
370370
az acr login --name msgraphpperegistry
371371
372372
- powershell: |
373-
$content = [XML](Get-Content $(Pipeline.Workspace)/RepoFiles/Directory.Build.props)
373+
$content = [XML](Get-Content $(Pipeline.Workspace)/Directory.Build.props)
374374
Write-Host "XML loaded, finding version..."
375375
376376
# Handle PropertyGroup as either a single element or array
@@ -459,7 +459,7 @@ extends:
459459
--push \
460460
-t "$(REGISTRY)/$(IMAGE_NAME):nightly" \
461461
-t "$(REGISTRY)/$(IMAGE_NAME):${VERSION}.${BUILDDATE}${RUNNUMBER}" \
462-
"$(Pipeline.Workspace)/RepoFiles"
462+
"$(Pipeline.Workspace)"
463463
464464
displayName: 'Build and Push Nightly Image'
465465
condition: eq(variables['Build.SourceBranch'], variables['PREVIEW_BRANCH'])
@@ -471,6 +471,6 @@ extends:
471471
--push \
472472
-t "$(REGISTRY)/$(IMAGE_NAME):latest" \
473473
-t "$(REGISTRY)/$(IMAGE_NAME):${VERSION}.${BUILDDATE}${RUNNUMBER}" \
474-
"$(Pipeline.Workspace)/RepoFiles"
474+
"$(Pipeline.Workspace)"
475475
displayName: 'Build and Push Release Image'
476476
condition: contains(variables['Build.SourceBranch'], 'refs/tags/v')

0 commit comments

Comments
 (0)