Skip to content

Commit 7dff531

Browse files
committed
Working on appx building & signing
1 parent 87bdfed commit 7dff531

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
3535
Write-Host "Setting version to $version"
3636
37-
dotnet build --configuration Release -p Platform=x64 -p Version=$version -p GenerateAppxPackageOnBuild=true
37+
dotnet build --configuration Release -p:Platform=x64 -p:Version=$version -p:GenerateAppxPackageOnBuild=true
3838
3939
- name: Move misx Packages
4040
run: |
@@ -81,9 +81,9 @@ jobs:
8181
name: Create Release
8282
with:
8383
artifacts: "${{ github.workspace }}/tmp/*.msix" # Path to the signed msix files to upload as artifacts for the release. Use glob pattern to match all files in the tmp folder.
84-
name: if ("${{ inputs.tag }}" -match '^v(\d+\.\d+\.\d+)$') { "Release ${{ inputs.tag }}" } else { "Release ${{ github.ref_name }}" }
84+
name: Release ${{ github.ref_name }}
8585
allowUpdates: true
86-
tag: if ("${{ inputs.tag }}" -match '^v(\d+\.\d+\.\d+)$') { "${{ inputs.tag }}" } else { ${{ github.ref_name }} }
86+
tag: ${{ github.ref_name }}
8787

8888
# publish:
8989
# runs-on: windows-latest

0 commit comments

Comments
 (0)