Release desktop app #94
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 desktop app | |
on: | |
push: | |
tags: | |
- "v.*" | |
workflow_dispatch: | |
jobs: | |
release: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Node.js setup | |
uses: actions/setup-node@v4 | |
- name: Install Rust (Stable) | |
run: curl https://sh.rustup.rs -sSf | sh -s -- -y | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- 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.1-dev libappindicator3-dev librsvg2-dev patchelf | |
- name: Build the app | |
uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tagName: "v.__VERSION__" # tauri-action replaces \_\_VERSION\_\_ with the app version | |
releaseName: "@gun-vue v.__VERSION__" | |
releaseBody: "See the assets to download this version and install on your desktop platform." | |
releaseDraft: true | |
prerelease: false | |
projectPath: ./desktop | |
tauriScript: pnpm tauri |