Skip to content

Commit

Permalink
Add special handling for macOS in Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
p42ul authored Feb 12, 2024
1 parent da7d123 commit cfa783f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Bundle resotool
if: matrix.os == 'macos-latest'
run: cargo xtask bundle-universal resotool --release
- name: Bundle resotool
if: matrix.os != 'macos-latest'
run: cargo xtask bundle resotool --release
- name: Create Artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit cfa783f

Please sign in to comment.