Skip to content

Commit

Permalink
Merge pull request kubenav#292 from si458/fix-mac-build
Browse files Browse the repository at this point in the history
fix-mac-10.15-build
  • Loading branch information
ricoberger authored Dec 26, 2020
2 parents 949825a + cbbd9c1 commit 7d351f6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '13.x'
node-version: '14.x'

- name: Setup Go
uses: actions/setup-go@v2
Expand All @@ -33,7 +33,7 @@ jobs:

- name: Install Ionic
run: |
npm install -g @ionic/cli@6.9.1
npm install -g @ionic/cli
- name: Install Dependencies
run: |
Expand Down
16 changes: 12 additions & 4 deletions cmd/electron/bundler.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,19 @@
"icon_path_darwin": "resources/icon.icns",
"icon_path_linux": "resources/icon.png",
"icon_path_windows": "resources/icon.ico",
"version_electron": "11.1.0",
"version_electron": "11.1.1",
"environments": [
{"arch": "amd64", "os": "darwin"},
{"arch": "amd64", "os": "linux"},
{"arch": "amd64", "os": "windows"}
{
"arch": "amd64",
"os": "darwin",
"env": {
"CGO_ENABLED": "1",
"CGO_CFLAGS": "-mmacosx-version-min=10.11",
"CGO_LDFLAGS": "-mmacosx-version-min=10.11"
}
},
{ "arch": "amd64", "os": "linux" },
{ "arch": "amd64", "os": "windows" }
],
"info_plist": {
"CFBundleIconFile": "kubenav.icns",
Expand Down

0 comments on commit 7d351f6

Please sign in to comment.