Skip to content

Commit

Permalink
优化windows发布
Browse files Browse the repository at this point in the history
  • Loading branch information
youlingdada committed Oct 17, 2024
1 parent d9ff376 commit d2da02e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit d2da02e

Please sign in to comment.