Skip to content

Commit

Permalink
add windows platform to CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
anastasiya1155 committed Mar 7, 2024
1 parent 87da96f commit a5dd84e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/tauri-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
target:
[x86_64-unknown-linux-gnu, x86_64-apple-darwin, aarch64-apple-darwin]
[x86_64-unknown-linux-gnu, x86_64-apple-darwin, aarch64-apple-darwin, x86_64-pc-windows-msvc]

include:
- target: x86_64-unknown-linux-gnu
Expand All @@ -30,6 +30,9 @@ jobs:
- target: aarch64-apple-darwin
name: macos-11

- target: x86_64-pc-windows-msvc
name: [ self-hosted, Windows, X64 ]


runs-on: ${{ matrix.name }}
env:
Expand Down Expand Up @@ -105,6 +108,14 @@ jobs:
field: tauri.bundle.macOS.providerShortName
value: ${{ secrets.MAC_PROVIDER_SHORT_NAME }}

- name: Set identifier to bloop on Windows, in tauri.conf.json
if: matrix.target == 'x86_64-pc-windows-msvc'
uses: jossef/action-set-json-field@v2
with:
file: apps/desktop/src-tauri/tauri.conf.json
field: tauri.bundle.identifier
value: bloop

- name: Set signingIdentity in tauri.conf.json
uses: jossef/[email protected]
with:
Expand Down

0 comments on commit a5dd84e

Please sign in to comment.