We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fb27d5 commit b23b500Copy full SHA for b23b500
1 file changed
.github/workflows/release.yml
@@ -38,14 +38,9 @@ jobs:
38
$version = "0.0.0.1" # fallback version if no tag is provided
39
}
40
Write-Host "Setting version to $version"
41
- dotnet msbuild -p:Version=$version
42
43
- name: Build x64
44
run: |
45
- # Get version number from input or tag
46
- $version = if ("${{ inputs.tag }}".Length -eq 0) { "${{ inputs.tag }}.0" } else { "${{ github.ref_name }}.0" }
47
- $version = $version -replace '^v', '' # Remove 'v' prefix if present for msbuild compatibility
48
-
49
dotnet build --configuration Release -p Platform=x64 -p Version=$version -p GenerateAppxPackageOnBuild=true
50
51
- name: Move misx Packages
0 commit comments