Skip to content

Commit

Permalink
Fix zip structure for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamVenner committed Jan 27, 2024
1 parent 8cc74bc commit f39d16e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
root = true

[*.yml]
indent_style = space
indent_size = 2

[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
insert_final_newline = false

[*.yml]
indent_style = space
indent_size = 2
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
run: cargo bundle --release

- name: Rename
run: mv target/release/bundle/osx/Blackhole.app target/release/bundle/osx/blackhole_macos64.app
run: mv target/release/bundle/osx/Blackhole.app Blackhole.app

- name: ZIP
run: zip -r target/release/bundle/osx/blackhole_macos64.app.zip target/release/bundle/osx/blackhole_macos64.app
run: zip -r Blackhole.app.zip Blackhole.app

- name: Release
uses: softprops/action-gh-release@v1
with:
files: target/release/bundle/osx/blackhole_macos64.app.zip
files: Blackhole.app.zip
fail_on_unmatched_files: true
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/target
!.vscode/settings.json
.DS_Store
wix311/
wix311.zip
/wix311/
/wix311.zip
/Blackhole.app
/Blackhole.app.zip

0 comments on commit f39d16e

Please sign in to comment.