Skip to content

Commit

Permalink
Fix Docker build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmairegger committed Jul 31, 2023
1 parent db2318d commit 520168c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-docker-image.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function Exec
#Select the UI version from dependencies.props and use it as image version


$version = select-xml -Path ${PSScriptRoot}/build/dependencies.props -XPath "/Project/PropertyGroup[contains(@Label,'Health Checks Package Versions')]/HealthCheckUI"
$version = select-xml -Path ${PSScriptRoot}/build/versions.props -XPath "/Project/PropertyGroup[contains(@Label,'Health Checks Package Versions')]/HealthCheckUI"

$tag = $version.node.InnerXML

Expand Down
2 changes: 1 addition & 1 deletion build-operator-image.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Exec {
#Select the UI version from dependencies.props and use it as image version


$version = select-xml -Path .\build\dependencies.props -XPath "/Project/PropertyGroup[contains(@Label,'Health Checks Package Versions')]/HealthChecksUIK8sOperator"
$version = select-xml -Path .\build\versions.props -XPath "/Project/PropertyGroup[contains(@Label,'Health Checks Package Versions')]/HealthChecksUIK8sOperator"

$tag = $version.node.InnerXML

Expand Down

0 comments on commit 520168c

Please sign in to comment.