Skip to content

Commit

Permalink
workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFern2 committed Jun 13, 2024
1 parent e7f2135 commit 8f898cc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@ jobs:
include:
- os: macos-11
target: "dmg"
rust_target: "x86_64-apple-darwin"
arch: "universal" # for macOS universal (Intel + Silicon)
- os: ubuntu-latest
target: "AppImage"
rust_target: "x86_64-unknown-linux-gnu"
arch: "x86_64"
- os: windows-latest
target: "msi"
rust_target: "x86_64-pc-windows-msvc"
arch: "x86_64"

steps:
Expand All @@ -45,7 +48,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.arch }}
target: ${{ matrix.rust_target }}
default: true

- name: Install Tauri CLI
Expand Down

0 comments on commit 8f898cc

Please sign in to comment.