Skip to content

chore: release v1.0.0-beta.1 #9

chore: release v1.0.0-beta.1

chore: release v1.0.0-beta.1 #9

Workflow file for this run

name: release
permissions:
contents: write
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
publish:
strategy:
fail-fast: false
matrix:
include:
- platform: macos-latest
args: --target aarch64-apple-darwin
- platform: macos-latest
args: --target x86_64-apple-darwin
- platform: ubuntu-22.04
args: ''
- platform: windows-latest
args: ''
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9.14.4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- 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.1-dev libappindicator3-dev librsvg2-dev patchelf
- run: pnpm install
- name: Generate CHANGELOG
id: generate-changelog
run: |
tags=$(git tag --sort=-creatordate | head -n 2)
to=$(echo "$tags" | sed -n 1p)
from=$(echo "$tags" | sed -n 2p)
changelog=$(pnpm changelogen --from="$from" --to="$to" --no-output)
echo "CHANGELOG<<EOF" >> $GITHUB_OUTPUT
echo "$changelog" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
shell: bash
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: v__VERSION__
releaseName: v__VERSION__
releaseBody: ${{ steps.generate-changelog.outputs.CHANGELOG }}
prerelease: false
args: ${{ matrix.args }}