Use tauri-action fix for arm Appimages #10
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: "Release Artifact Publishing" | |
on: | |
workflow_dispatch: | |
jobs: | |
publish: | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-20.04, windows-latest, ARM64] | |
node-version: [16] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git submodule update --init | |
- name: Initialize Rust Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/src-tauri/target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
- 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 | |
- name: Install dependencies (ARM only) | |
if: matrix.platform == 'ARM64' | |
run: | | |
apt-get update | |
apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf libssl-dev wget | |
- name: Install frontend dependencies | |
run: pnpm install | |
- name: Build Tauri application | |
uses: tauri-action@fix/arm-appimage | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version | |
releaseName: "MNMC v__VERSION__" | |
releaseBody: "See release assets to download this version and install." | |
releaseDraft: true | |
prerelease: true | |
args: "--verbose" |