mess with github actions and add auto updater #3
This file contains 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: | ||
branches: | ||
- release | ||
jobs: | ||
release: | ||
permissions: | ||
contents: write | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: [windows-latest] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: install Rust stable | ||
uses: dtolnay/rust-toolchain@stable | ||
- uses: tauri-apps/tauri-action@v0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
TAURI_PRIVATE_KEY: ${{ secret.TAURI_PRIVATE_KEY }} | ||
Check failure on line 27 in .github/workflows/release.yml GitHub Actions / ReleaseInvalid workflow file
|
||
TAURI_KEY_PASSWORD: ${{ secret.TAURI_KEY_PASSWORD }} | ||
with: | ||
tagName: dolos-v__VERSION__ | ||
releaseName: 'Dolos v__VERSION__' | ||
releaseBody: 'See the assets below to download either installer.' |