Skip to content

Commit

Permalink
feat(packager): add support to macOS .app bundles (#17)
Browse files Browse the repository at this point in the history
* feat(packager): add support to macOS .app bundles

* do not remove out dir [skip ci]

* consistency changes

* test windows and macOS

* clippy

* fix macos build

* fix fmt

---------

Co-authored-by: Amr Bashir <[email protected]>
  • Loading branch information
lucasfernog-crabnebula and amr-crabnebula committed Sep 13, 2023
1 parent c020362 commit 883d5b0
Show file tree
Hide file tree
Showing 18 changed files with 1,102 additions and 131 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,18 @@ jobs:
run: cargo fmt --all -- --check

test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: install webkit2gtk
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y webkit2gtk-4.1 libayatana-appindicator3-dev
Expand Down
160 changes: 55 additions & 105 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/config/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
]
},
"deb": {
"description": "Platform-specific configurations. Debian-specific settings.",
"description": "Debian-specific settings.",
"anyOf": [
{
"$ref": "#/definitions/DebianConfig"
Expand Down
Loading

0 comments on commit 883d5b0

Please sign in to comment.