Update main.yml
This commit is contained in:
parent
4cfc2db653
commit
58e8e76160
1 changed files with 33 additions and 29 deletions
62
.github/workflows/main.yml
vendored
62
.github/workflows/main.yml
vendored
|
@ -9,40 +9,44 @@ jobs:
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: ./client
|
working-directory: ./client
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
platform: [windows-latest]
|
platform: [windows-latest]
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: setup node
|
- name: setup node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
- name: install Rust stable
|
- name: install Rust stable
|
||||||
uses: dtolnay/rust-toolchain@stable
|
uses: dtolnay/rust-toolchain@stable
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: pnpm/action-setup@v3
|
||||||
- uses: pnpm/action-setup@v3
|
with:
|
||||||
with:
|
version: 8
|
||||||
version: 8
|
|
||||||
|
- name: install frontend dependencies
|
||||||
- name: install frontend dependencies
|
run: pnpm install
|
||||||
run: pnpm install # change this to npm or pnpm depending on which one you use
|
|
||||||
|
- name: build and release tauri app
|
||||||
- uses: tauri-apps/tauri-action@v0
|
uses: tauri-apps/tauri-action@v0
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
|
projectPath: .
|
||||||
releaseName: 'Jankboard 2 v__VERSION__'
|
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
|
||||||
releaseBody: 'See the assets to download this version and install.'
|
releaseName: 'Jankboard 2 v__VERSION__'
|
||||||
releaseDraft: true
|
releaseBody: 'See the assets to download this version and install.'
|
||||||
prerelease: false
|
releaseDraft: true
|
||||||
tauriScript: 'pnpm'
|
prerelease: false
|
||||||
|
tauriScript: 'pnpm'
|
||||||
|
|
Loading…
Reference in a new issue