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 b40745c commit 00b55a2Copy full SHA for 00b55a2
.github/workflows/cd-controls.yml
@@ -31,6 +31,7 @@ jobs:
31
WORKING_DIR: '${{ github.workspace }}' # D:\a\Files\Files\
32
PROJECT_DIR: '${{ github.workspace }}\src\Files.App.Controls'
33
PACKAGE_PROJECT_PATH: '${{ github.workspace }}\src\Files.App.Controls\Files.App.Controls.csproj'
34
+ PACKAGE_MANIFEST_PATH: '${{ github.workspace }}\src\Files.App (Package)\Package.appxmanifest'
35
36
steps:
37
- name: Checkout the repository
@@ -53,7 +54,7 @@ jobs:
53
54
id: extract_version
55
shell: pwsh
56
run: |
- $xml = [xml](Get-Content $env:PROJECT_DIR\Package.appxmanifest)
57
+ $xml = [xml](Get-Content $env:PACKAGE_MANIFEST_PATH)
58
$version = $xml.Package.Identity.Version
59
Write-Output "Found package version, $version"
60
echo "::set-output name=version::$version"
0 commit comments