Skip to content

Commit

Permalink
CI: Fix windows build tauri
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi311 committed Oct 23, 2024
1 parent 6f5f92c commit ef2ac04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,11 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
run: |
cd crates/tanoshi-tauri
if "%GITHUB_REF%" == "refs/tags/*" (
if ($env:GITHUB_REF -match '^refs/tags/') {
cargo tauri build
) else (
} else {
cargo tauri build --debug
)
}
- name: Move files (linux/macOS)
if: ${{ matrix.os != 'windows-latest' }}
Expand Down

0 comments on commit ef2ac04

Please sign in to comment.