Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Bring in primary changes (#14) #12

Bring in primary changes (#14)

Bring in primary changes (#14) #12

Workflow file for this run

name: 'publish'
on:
push:
branches:
- release
jobs:
publish-tauri:
permissions:
contents: write
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 Mac Rust Targets
if: matrix.platform == 'macos-latest'
run: rustup target add aarch64-apple-darwin
- name: Install Ubuntu dependencies
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install frontend dependencies
run: npm install
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: dolo-__VERSION__
releaseName: 'Dolo __VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false