Skip to content

Commit

Permalink
🔧 添加跨平台编译命令
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Oct 25, 2023
1 parent 20113cf commit 5411ae0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 24 deletions.
39 changes: 17 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,30 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [windows-latest]

platform: [windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3

- name: Rust setup
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"

- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.6.7
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Restore Cargo dependencies
uses: actions/cache@v3
with:
path: |
~/src-tauri/.cargo/bin/
~/src-tauri/.cargo/registry/index/
~/src-tauri/.cargo/registry/cache/
~/src-tauri/.cargo/git/db/
~/src-tauri/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
cache: "pnpm"
- name: Install frontend dependencies
run: pnpm install --frozen-lockfile
- uses: tauri-apps/tauri-action@dev
run: pnpm install

- name: Build app
uses: tauri-apps/tauri-action@dev
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
Expand Down
5 changes: 3 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,13 @@
"icons/icon.png"
],
"identifier": "TeyvatGuide",
"targets": ["msi"],
"targets": ["msi", "app", "dmg"],
"windows": {
"wix": {
"language": "zh-CN"
}
}
},
"macOS": {}
},
"security": {
"dangerousRemoteDomainIpcAccess": [
Expand Down

0 comments on commit 5411ae0

Please sign in to comment.