From a9da16fb98aca669b463c10476b9eb61a3a41dbc Mon Sep 17 00:00:00 2001 From: 22 <60903333+nini22P@users.noreply.github.com> Date: Fri, 6 Jun 2025 21:48:54 +0800 Subject: [PATCH] ci: fix package installer and updater in msix --- .github/workflows/ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77bad56..0203542 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,8 @@ jobs: with: name: IRIS-windows.zip path: IRIS-windows.zip + - name: Remove updater + run: Remove-Item -Path build\windows\x64\runner\Release\iris-updater.bat -Force - name: Create installer run: iscc inno.iss - name: Upload installer @@ -48,8 +50,14 @@ jobs: with: name: IRIS-windows-installer.exe path: build\windows\x64\runner\Release\IRIS-windows-installer.exe - - name: Create store msix - run: dart run msix:create --store true --output-name IRIS-windows-store + - name: Clean up + run: Remove-Item -Path build\windows\x64\runner\Release\ -Recurse -Force + - name: Build store msix + run: dart run msix:build --store true + - name: Remove updater + run: Remove-Item -Path build\windows\x64\runner\Release\iris-updater.bat -Force + - name: Pack store msix + run: dart run msix:pack --store true --output-name IRIS-windows-store - name: Upload msix uses: actions/upload-artifact@v4 with: