From d2da02e6ad042c429a7a3015dc2202fee2fbfcc4 Mon Sep 17 00:00:00 2001 From: youlingdada Date: Thu, 17 Oct 2024 11:09:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96windows=E5=8F=91=E5=B8=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e73bfe5..b4121ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,14 +112,14 @@ jobs: rust-version: ${{env.RUST_VERSION}} targets: x86_64-unknown-linux-musl - - uses: actions/checkout@v4 - - name: Build - run: cargo build --release - - name: Install Inno Setup run: | curl -L -o innosetup.exe https://jrsoftware.org/download.php/is.exe - Start-Process -Wait -FilePath innosetup.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + Start-Process -FilePath "innosetup.exe" -ArgumentList "/VERYSILENT", "/SUPPRESSMSGBOXES", "/NORESTART" -Wait + + - uses: actions/checkout@v4 + - name: Build + run: cargo build --release - name: Build Installer with Inno Setup run: |