# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release.
jobs:
publish-tauri:
permissions:
contents:write
strategy:
fail-fast:false
matrix:
include:
- platform:'macos-latest'# for Arm based macs (M1 and above).
args:'--target aarch64-apple-darwin'
- platform:'macos-latest'# for Intel based macs.
args:'--target x86_64-apple-darwin'
- platform:'ubuntu-22.04'# for Tauri v1 you could replace this with ubuntu-20.04.