publish #131
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: 'publish' | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '**.yml' | |
jobs: | |
publish-tauri: | |
defaults: | |
run: | |
shell: bash -el {0} | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install frontend dependencies | |
run: pnpm install | |
- name: install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
- 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.0-dev libappindicator3-dev librsvg2-dev libarchive-dev patchelf | |
- name: Set VCPKG_ROOT | |
run: echo "VCPKG_ROOT=$VCPKG_INSTALLATION_ROOT" >> $GITHUB_ENV | |
- name: Cache vcpkg | |
if: matrix.platform == 'windows-latest' | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.VCPKG_ROOT }}/downloads | |
${{ env.VCPKG_ROOT }}/packages | |
${{ env.VCPKG_ROOT }}/installed | |
key: ${{ runner.os }}-vcpkg-libarchive | |
- name: Install Vcpkg | |
if: matrix.platform == 'windows-latest' | |
run: "'${{env.VCPKG_ROOT}}/vcpkg' install libarchive:x64-windows-static-md" | |
- name: Cache Rust / Cargo | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
src-tauri/target | |
key: ${{ runner.os }}-${{runner.arch}}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{runner.arch}}-cargo- | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version | |
releaseName: 'App v__VERSION__' | |
releaseBody: 'See the assets to download this version and install.' | |
releaseDraft: true | |
prerelease: false | |
- name: Remove bundles for cache | |
run: rm -rf src-tauri/target/release/bundle/ |