Skip to content

Commit

Permalink
Merge pull request #5017 from tuffnatty/macos-build-fixes-20240719
Browse files Browse the repository at this point in the history
MacOS build: Fixed bundling a wrong libtcl86 image. Work around hdiutil crash on MacOS 13
  • Loading branch information
pawelsalawa authored Jul 19, 2024
2 parents 16f1197 + 711daba commit bbb6c0e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/mac_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@ jobs:
qmake_flags: ""

steps:
- name: Uninstall unwanted Homebrew packages and their dependents
run: |
if brew list tcl-tk 2>/dev/null; then
brew uninstall tcl-tk r
fi
- name: Install the InstallBuilder
shell: bash
run: |
Expand Down Expand Up @@ -310,7 +316,7 @@ jobs:
path: SQLiteStudio-${{ env.SQLITESTUDIO_VERSION }}-osx-installer.dmg

build-universal:
runs-on: macos-latest
runs-on: macos-12 # Don't use newer versions yet, https://github.com/actions/runner-images/issues/7522
needs: build
strategy:
fail-fast: false
Expand Down

0 comments on commit bbb6c0e

Please sign in to comment.