Skip to content

Commit

Permalink
Fix boot for all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
DIDIRUS4 committed Sep 1, 2024
1 parent 9263c39 commit b699ff6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,17 @@ jobs:
run: pnpm install

- name: build app (macos)
run: pnpm --filter=@modrinth/app run tauri build --target universal-apple-darwin --config "tauri-release.conf.json"
# tauri.conf.yml for normal build and boot.
run: pnpm --filter=@modrinth/app run tauri build --target universal-apple-darwin --config "tauri.conf.json"
if: startsWith(matrix.platform, 'macos')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}

- name: build app
run: pnpm --filter=@modrinth/app run tauri build --config "tauri-release.conf.json"
# tauri.conf.yml for normal build and boot.
run: pnpm --filter=@modrinth/app run tauri build --config "tauri.conf.json"
id: build_os
if: "!startsWith(matrix.platform, 'macos')"
env:
Expand Down Expand Up @@ -139,4 +141,3 @@ jobs:
target/release/bundle/*/*.msi
target/release/bundle/*/*.msi.zip
target/release/bundle/*/*.msi.zip.sig

0 comments on commit b699ff6

Please sign in to comment.