jankboard/.github/workflows/main.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

2024-03-01 12:35:13 -08:00
name: 'publish'
# This will trigger the action on each push to the `release` branch.
on:
push:
branches:
- beta
- main
jobs:
publish-tauri:
defaults:
run:
working-directory: ./client
2024-03-01 12:35:13 -08:00
permissions:
contents: write
strategy:
fail-fast: false
matrix:
2024-03-01 13:05:54 -08:00
platform: [windows-latest]
2024-03-01 12:35:13 -08:00
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: dtolnay/rust-toolchain@stable
- name: install frontend dependencies
2024-03-01 12:39:11 -08:00
run: npm install # change this to npm or pnpm depending on which one you use
2024-03-01 12:35:13 -08:00
- 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
2024-03-01 13:05:54 -08:00
releaseName: 'Jankboard 2 v__VERSION__'
2024-03-01 12:35:13 -08:00
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false