Skip to content

Commit

Permalink
Bug fix and workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fksms committed Oct 3, 2024
1 parent 270da7e commit 563ee2d
Show file tree
Hide file tree
Showing 4 changed files with 361 additions and 211 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/apple-arm-build-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# If tagName and releaseId are omitted tauri-action will only build the app and won't try to upload any assets.
- uses: tauri-apps/tauri-action@v0
with:
args: --debug
args: --debug --bundles app
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
args: ${{ matrix.args }}
Expand All @@ -52,4 +52,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Apple(Arm)-binary(Debug)
path: src-tauri/target/debug/bundle/dmg/*.dmg
path: src-tauri/target/debug/bundle/macos/*
4 changes: 3 additions & 1 deletion .github/workflows/apple-arm-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:

# If tagName and releaseId are omitted tauri-action will only build the app and won't try to upload any assets.
- uses: tauri-apps/tauri-action@v0
with:
args: --bundles app
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
args: ${{ matrix.args }}
Expand All @@ -50,4 +52,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Apple(Arm)-binary(Release)
path: src-tauri/target/release/bundle/dmg/*.dmg
path: src-tauri/target/release/bundle/macos/*
Loading

0 comments on commit 563ee2d

Please sign in to comment.