Release #28
This file contains hidden or 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: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
jobs: | |
release: | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-22.04, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: 'yarn' | |
- name: install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly-2024-05-04 # 1.80.0-nightly (e82c861d7 2024-05-04) | |
targets: wasm32-unknown-unknown,${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} | |
- name: install Tauri cli | |
run: cargo install tauri-cli | |
- name: install Tailwind CSS | |
run: npm i -g tailwindcss | |
- name: generate Tailwind CSS | |
run: npx tailwindcss -i ./input.css -o ./style/output.css | |
- uses: jetli/trunk-action@v0.1.0 | |
with: | |
# Optional version of trunk to install(eg. 'v0.8.1', 'latest') | |
version: "latest" | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-22.04' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev | |
- name: Rust cache | |
uses: swatinem/rust-cache@v2 | |
with: | |
workspaces: './src-tauri -> target' | |
- name: build in release mode | |
run: cargo tauri build | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tagName: ${{ github.ref_name }} # This only works if your workflow triggers on new tags. | |
releaseName: 'RSQL v__VERSION__' # tauri-action replaces \_\_VERSION\_\_ with the app version. | |
releaseBody: 'See the assets to download and install this version.' | |
releaseDraft: true | |
prerelease: false |