Skip to content

Commit

Permalink
build: Update packaging settings
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Dec 24, 2024
1 parent 4e08324 commit ab7922b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ ubuntu-latest, macos-13, windows-latest ]
runs-on: ${{ matrix.os }}
if: startsWith(github.event.head_commit.message, 'Releasing version') != true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ ubuntu-latest, macos-13, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ ubuntu-latest, macos-13, windows-latest ]
runs-on: ${{ matrix.os }}

steps:
Expand Down
4 changes: 2 additions & 2 deletions apps/ikonli-browser/ikonli-browser.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ jlink {
appVersion = rootProject.baseVersion
outputDir = 'packagers'
def imgType = rootProject.javafx_platform == 'win' ? 'ico' : rootProject.javafx_platform == 'mac' ? 'icns' : 'png'
imageOptions += ['--icon', "src/main/jpackage/icons/ikonli-browser.$imgType"]
installerOptions += ['--resource-dir', 'src/main/resources']
imageOptions += ['--icon', "apps/ikonli-browser/src/main/jpackage/icons/ikonli-browser.$imgType"]
installerOptions += ['--resource-dir', 'apps/ikonli-browser/src/main/resources']
installerOptions += ['--vendor', 'Kordamp']
if (rootProject.javafx_platform == 'win') {
installerOptions += ['--win-per-user-install', '--win-dir-chooser', '--win-menu', '--win-shortcut']
Expand Down

0 comments on commit ab7922b

Please sign in to comment.