Skip to content

feat: add update checking,add UI for update notifications,improve bui… #66

feat: add update checking,add UI for update notifications,improve bui…

feat: add update checking,add UI for update notifications,improve bui… #66

Workflow file for this run

name: Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
environment: TAURI_KEY # 指定使用这个环境
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20.19.0'
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-store
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-store.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"
- name: Install dependencies
run: pnpm install
- name: Get version
id: get_version
shell: bash
run: |
VERSION=$(node -p "require('./package.json').version")
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
echo "Version is $VERSION"
- name: Build with Tauri Action
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
# 不发布 release,只构建
tagName: ""
releaseName: ""
releaseBody: ""
releaseDraft: false
prerelease: false
includeDebug: false
includeRelease: true
tauriScript: pnpm tauri
# Upload build artifacts for testing
- name: Upload Executable (Artifact)
uses: actions/upload-artifact@v4
with:
name: ReinaManager-${{ steps.get_version.outputs.VERSION }}-win_x64-exe
path: src-tauri/target/release/ReinaManager.exe
if-no-files-found: warn
- name: Upload MSI Installer (Artifact)
uses: actions/upload-artifact@v4
with:
name: ReinaManager-${{ steps.get_version.outputs.VERSION }}-win_x64-msi
path: src-tauri/target/release/bundle/msi/*.msi
if-no-files-found: warn
- name: Upload NSIS Installer (Artifact)
uses: actions/upload-artifact@v4
with:
name: ReinaManager-${{ steps.get_version.outputs.VERSION }}-win_x64-setup
path: src-tauri/target/release/bundle/nsis/*.exe
if-no-files-found: warn