upadte #42
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: 'publish' | |
on: | |
push: | |
branches: | |
- update_2 | |
jobs: | |
publish-tauri: | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- platform: 'macos-latest' # for Arm based macs (M1 and above). | |
target: 'aarch64-apple-darwin' | |
args: '--target aarch64-apple-darwin' | |
- platform: 'macos-latest' # for Intel based macs. | |
target: 'x86_64-apple-darwin' | |
args: '--target x86_64-apple-darwin' | |
- platform: 'ubuntu-22.04' | |
target: 'x86_64-unknown-linux-gnu' | |
args: '' | |
- platform: 'ubuntu-22.04' | |
target: 'aarch64-unknown-linux-gnu' | |
args: '' | |
- platform: 'windows-latest' | |
target: 'x86_64-pc-windows-msvc' | |
- platform: 'windows-latest' | |
target: 'i686-pc-windows-msvc' | |
- platform: 'windows-latest' | |
target: 'aarch64-pc-windows-msvc' | |
args: '--target aarch64-pc-windows-msvc' | |
runs-on: ${{ matrix.platform }} | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install rust target | |
run: rustup target add ${{ matrix.target }} | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: latest | |
- name: Sync node version and setup cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: install Rust stable | |
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 | |
- name: install frontend dependencies | |
run: pnpm install # change this to npm, pnpm or bun depending on which one you use. | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tagName: PakePlus-v__VERSION__ | |
releaseName: 'PakePlus v__VERSION__' | |
body_path: ./Note.md | |
releaseDraft: true | |
prerelease: false | |
args: ${{ matrix.args }} |