We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b23b500 commit 56e3156Copy full SHA for 56e3156
.github/workflows/release.yml
@@ -35,13 +35,13 @@ jobs:
35
if ("${{ inputs.tag }}" -match '^v(\d+\.\d+\.\d+)$') {
36
$version = $Matches[1]
37
} else {
38
- $version = "0.0.0.1" # fallback version if no tag is provided
+ $version = "0.0.1" # fallback version if no tag is provided
39
}
40
Write-Host "Setting version to $version"
41
42
- name: Build x64
43
run: |
44
- dotnet build --configuration Release -p Platform=x64 -p Version=$version -p GenerateAppxPackageOnBuild=true
+ dotnet build --configuration Release -p Platform=x64 -p Version=$version.0 -p GenerateAppxPackageOnBuild=true
45
46
- name: Move misx Packages
47
0 commit comments