Skip to content

fix workflow and bump 0.2.3 #90

fix workflow and bump 0.2.3

fix workflow and bump 0.2.3 #90

Workflow file for this run

name: 'Build app'
on: [push, pull_request, workflow_call, workflow_dispatch]
jobs:
test-tauri:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install app dependencies
run: yarn
- name: Lint check
if: matrix.platform == 'ubuntu-latest'
run: yarn lint
- name: Build the app
run: yarn build
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}