Skip to content

Commit

Permalink
Merge pull request #88 from PasteBar/kurdin-patch-1
Browse files Browse the repository at this point in the history
Update build-test.yml
  • Loading branch information
kurdin authored Jul 20, 2024
2 parents 990364d + 1533d81 commit f0df409
Showing 1 changed file with 9 additions and 20 deletions.
29 changes: 9 additions & 20 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,26 @@ on:

jobs:
test-tauri:
strategy:
fail-fast: false
matrix:
settings:
- 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: "windows-latest"
args: ""

runs-on: ${{ matrix.settings.platform }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v4

- name: setup node
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: lts/*

- name: install Rust stable
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
targets: ${{ matrix.settings.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
targets: aarch64-apple-darwin

- name: install packages
- name: Install packages
run: npm install

# If tagName and releaseId are omitted tauri-action will only build the app and won't try to upload any asstes.
- uses: tauri-apps/tauri-action@v0
- name: Build Tauri App
uses: tauri-apps/tauri-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
args: ${{ matrix.settings.args }}
with:
args: "--target aarch64-apple-darwin"

0 comments on commit f0df409

Please sign in to comment.