Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksongoode committed Aug 30, 2024
1 parent 45afb9b commit f62cec3
Show file tree
Hide file tree
Showing 5 changed files with 413 additions and 329 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@ jobs:
if: runner.os == 'Windows'
run: cargo build --release

- name: Cache cargo-bundle
if: runner.os == 'macOS'
id: cache-cargo-bundle
uses: actions/cache@v4
with:
path: ~/.cargo/bin/cargo-bundle
key: ${{ runner.os }}-cargo-bundle-${{ hashFiles('**/Cargo.lock') }}

- name: Install cargo-bundle
if: runner.os == 'macOS' && steps.cache-cargo-bundle.outputs.cache-hit != 'true'
Expand All @@ -81,7 +88,6 @@ jobs:
- name: Create macOS universal binary
if: runner.os == 'macOS'
run: |
mkdir -p target/release/bundle/osx/Psst.app/Contents/MacOS
lipo -create -output target/release/bundle/osx/Psst.app/Contents/MacOS/psst-gui \
target/x86_64-apple-darwin/release/psst-gui \
target/aarch64-apple-darwin/release/psst-gui
Expand Down
Loading

0 comments on commit f62cec3

Please sign in to comment.