Skip to content

Commit

Permalink
fix tauri script
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrades committed Mar 27, 2024
1 parent 114cc11 commit 543f253
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: release
on:
push:
tags:
Expand All @@ -12,27 +12,23 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [android]

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: oven-sh/setup-bun@v1
- name: "📦 Install"
run: bun install --frozen-lockfile

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable

- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -42,3 +38,4 @@ jobs:
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
tauriScript: bun run tauri

0 comments on commit 543f253

Please sign in to comment.