Skip to content

Release Artifact Publishing #12

Release Artifact Publishing

Release Artifact Publishing #12

Workflow file for this run

name: "Release Artifact Publishing"
on:
workflow_dispatch:
jobs:
publish:
permissions:
contents: write
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-22.04, windows-latest, ARM64]
node-version: [18]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- 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@v4
with:
version: 8
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
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-22.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-apps/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"