Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/ui' into ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Loudbooks committed Oct 8, 2024
2 parents 3cbfb2b + 696aa20 commit 84af124
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,33 @@ jobs:
npm i
npm install -g pnpm
- name: Run Tauri Build
- name: Run Tauri Build (MacOS)
if: matrix.os == 'macos-latest'
run: |
rustup target add x86_64-apple-darwin
pnpm tauri build --target universal-apple-darwin
- name: Run Tauri Build (Windows)
if: matrix.os == 'windows-latest'
run: pnpm tauri build

- name: Upload Artifact (MacOS Bundle)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook MacOS Bundle
path: ${{github.workspace}}/src-tauri/target/universal-apple-darwin/release/bundle/macos/ReportBook.app

- name: Upload Artifact (MacOS Binary)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook MacOS Binary
path: ${{github.workspace}}/src-tauri/target/universal-apple-darwin/release/reportbook

- name: Tree
run: tree
- name: Upload Artifact (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook Windows
path: ${{github.workspace}}\src-tauri\target\release\reportbook.exe

0 comments on commit 84af124

Please sign in to comment.