Skip to content

Commit 953f1e6

Browse files
committed
Working on appx building & signing
1 parent 56e3156 commit 953f1e6

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ jobs:
2626
with:
2727
dotnet-version: 9.0.x
2828

29-
- name: Restore
30-
run: dotnet restore --locked-mode
31-
32-
- name: Set version number
29+
- name: Build x64
3330
run: |
3431
# Set the version number for the build based on the tag or fallback to the branch name
3532
if ("${{ inputs.tag }}" -match '^v(\d+\.\d+\.\d+)$') {
@@ -38,10 +35,8 @@ jobs:
3835
$version = "0.0.1" # fallback version if no tag is provided
3936
}
4037
Write-Host "Setting version to $version"
41-
42-
- name: Build x64
43-
run: |
44-
dotnet build --configuration Release -p Platform=x64 -p Version=$version.0 -p GenerateAppxPackageOnBuild=true
38+
39+
dotnet build --configuration Release -p Platform=x64 -p Version="$version.0" -p GenerateAppxPackageOnBuild=true
4540
4641
- name: Move misx Packages
4742
run: |

0 commit comments

Comments
 (0)