Skip to content

publish

publish #15

Workflow file for this run

name: 'publish'
on:
workflow_dispatch:
jobs:
publish-tauri:
permissions:
contents: write
strategy:
fail-fast: false
matrix:
include:
#- platform: 'macos-latest' # for Arm based macs (M1 and above).
# args: '--target aarch64-apple-darwin'
#- platform: 'macos-latest' # for Intel based macs.
# args: '--target x86_64-apple-darwin'
#- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
# args: ''
- platform: 'windows-latest'
args: ''
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: install pnpm
run: npm i -g pnpm
- name: install frontend dependencies
run: pnpm install
- name: Get short SHA(windows)
if: matrix.platform == 'windows-latest'
run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV
- name: Get short SHA(non windows)
if: matrix.platform != 'windows-latest'
run: |
calculatedSha=$(git rev-parse --short ${{ github.sha }})
echo "SHORT_SHA=$calculatedSha" >> $GITHUB_ENV
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: ${{ env.SHORT_SHA }}
releaseName: ${{ env.SHORT_SHA }}