Bump mio from 0.8.10 to 0.8.11 in /src-tauri #60
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Snapshot Builds | |
on: | |
push: | |
paths: | |
- 'public/**' | |
- 'scripts/**' | |
- 'src/**' | |
- 'src-tauri/**' | |
- 'package.json' | |
- 'pnpm-lock.yaml' | |
- 'vite.config.ts' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
config: | |
- os: windows | |
arch: x64 | |
target: x86_64-pc-windows-msvc | |
- os: windows | |
arch: arm64 | |
target: aarch64-pc-windows-msvc | |
- os: ubuntu | |
arch: x64 | |
target: x86_64-unknown-linux-gnu | |
- os: macos | |
arch: x64 | |
target: x86_64-apple-darwin | |
- os: macos | |
arch: arm64 | |
target: aarch64-apple-darwin | |
runs-on: ${{ matrix.config.os }}-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.config.target }} | |
- name: Setup Rust Cache | |
uses: swatinem/rust-cache@v2 | |
with: | |
key: ${{ matrix.config.target }} | |
workspaces: './src-tauri -> target' | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: | | |
npm i -g pnpm | |
pnpm install | |
- name: Install Dependencies (Ubuntu) | |
if: ${{ matrix.config.os == 'ubuntu' }} | |
run: | | |
sudo apt update | |
sudo apt install -y libwebkit2gtk-4.0-dev \ | |
build-essential \ | |
curl \ | |
wget \ | |
libssl-dev \ | |
libgtk-3-dev \ | |
libayatana-appindicator3-dev \ | |
librsvg2-dev | |
- name: Build App | |
run: pnpm build --target ${{ matrix.config.target }} | |
- name: Setup Artifact (Windows) | |
if: ${{ matrix.config.os == 'windows' }} | |
run: pwsh scripts/setup-artifact.ps1 ${{ matrix.config.os }} ${{ matrix.config.arch }} ${{ matrix.config.target }} | |
- name: Setup Artifact (Ubuntu, macOS) | |
if: ${{ matrix.config.os != 'windows' }} | |
run: bash scripts/setup-artifact.sh ${{ matrix.config.os }} ${{ matrix.config.arch }} ${{ matrix.config.target }} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.config.os }}-${{ matrix.config.arch }} | |
path: artifacts/${{ matrix.config.os }}-${{ matrix.config.arch }}/** |