Skip to content

update some publish steps #11

update some publish steps

update some publish steps #11

Workflow file for this run

name: "publish"
on:
push:
branches:
- 'release-**'
jobs:
publish-tauri:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, windows-latest]
# 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: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.74
# - name: install dependencies (ubuntu only)
# if: matrix.platform == 'ubuntu-latest'
# run: |
# sudo apt-get update
# sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
# - name: install dependencies (macos)
# if: matrix.platform == 'macos-latest'
# run: |
# rustup target add x86_64-apple-darwin
- name: install frontend dependencies
run: npm ci
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "v__VERSION__"
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
includeDebug: false