Skip to content

Commit 3ce6209

Browse files
committed
ci: remove MSIX build
1 parent a6b9cf0 commit 3ce6209

File tree

2 files changed

+1
-53
lines changed

2 files changed

+1
-53
lines changed

.github/workflows/on_release.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ jobs:
3030
with:
3131
name: tarball
3232

33-
- name: Download msix 📥
34-
uses: actions/download-artifact@v4
35-
with:
36-
name: launcher-msix
37-
38-
- name: Rename msix ✏️
39-
run: mv */*.msixbundle NixOS-WSL-Launcher.msixbundle
40-
4133
- name: Download bundle
4234
uses: actions/download-artifact@v4
4335
with:
@@ -50,7 +42,7 @@ jobs:
5042

5143
- name: Generate Checksums 🔑
5244
run: |
53-
for x in *.{tar.gz,msixbundle,zip}; do
45+
for x in *.{tar.gz,zip}; do
5446
sha256sum $x > ${x}.sha256
5547
done
5648
@@ -62,7 +54,5 @@ jobs:
6254
nixos-wsl.tar.gz.sha256
6355
NixOS-WSL-Launcher.zip
6456
NixOS-WSL-Launcher.zip.sha256
65-
NixOS-WSL-Launcher.msixbundle
66-
NixOS-WSL-Launcher.msixbundle.sha256
6757
env:
6858
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/run_package.yml

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -36,45 +36,3 @@ jobs:
3636
with:
3737
name: launcher-bundle
3838
path: Launcher/Launcher/pkg
39-
40-
launcher-msix:
41-
name: MSIX 📦
42-
runs-on: windows-latest
43-
steps:
44-
- name: Checkout
45-
uses: actions/checkout@v4
46-
with:
47-
fetch-depth: 0
48-
49-
- name: Download tarball 📥
50-
uses: actions/download-artifact@v4
51-
with:
52-
name: tarball
53-
path: Launcher/Launcher-Appx
54-
55-
- name: Setup .NET 🧰
56-
uses: ./.github/actions/setup-dotnet
57-
58-
- name: Set Versions 🏷️
59-
uses: ./.github/actions/version
60-
61-
- name: Build MSIX package 📦
62-
working-directory: Launcher
63-
run: msbuild Launcher-Appx\Launcher-Appx.wapproj /p:Configuration=Release /p:Platform=x64 /p:ContinuousIntegrationBuild=true /p:Deterministic=true
64-
65-
- name: Sign package ✒️
66-
env:
67-
APPX_SIGNING_CERT: ${{ secrets.APPX_SIGNING_CERT }}
68-
CERT_ALGORITHM: ${{ secrets.CERT_ALGORITHM }}
69-
if: env.APPX_SIGNING_CERT != ''
70-
run: |
71-
Write-Output $env:APPX_SIGNING_CERT > appx-cert.b64
72-
certutil -decode appx-cert.b64 appx-cert.pfx
73-
&"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x64\signtool.exe" sign /fd $env:CERT_ALGORITHM /a /f appx-cert.pfx $(Get-ChildItem -Recurse -Filter "*.msixbundle")[0].FullName
74-
Get-PfxCertificate appx-cert.pfx | Export-Certificate -FilePath "$($(Get-ChildItem -Recurse -Filter "*.msixbundle")[0].Directory.FullName)\certificate.cer" -Type CERT
75-
76-
- name: Upload MSIX 📤
77-
uses: actions/upload-artifact@v4
78-
with:
79-
name: launcher-msix
80-
path: Launcher/Launcher-Appx/AppPackages/

0 commit comments

Comments
 (0)