Skip to content

chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates #224

chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates

chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates #224

Workflow file for this run

name: "build"
on:
push:
branches: main
pull_request:
branches: "**"
jobs:
build-tauri:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- 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 libwebkit2gtk-4.1-dev build-essential libssl-dev libayatana-appindicator3-dev librsvg2-dev
- name: install frontend dependencies
run: npm install
- name: Build Application
uses: tauri-apps/tauri-action@v0
id: tauri_build
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.platform }}
path: "${{ join(fromJSON(steps.tauri_build.outputs.artifactPaths), '\n') }}"