mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 07:50:19 +00:00
Updated the macOS GitHub Actions workflow to install enchant instead of the removed enchant-applespell Homebrew formula in the dependency step, which addresses the reported brew failure.
Updated the bundling step to resolve ENCHANT_PREFIX from brew --prefix enchant so packaging remains aligned with the installed formula.
This commit is contained in:
4
.github/workflows/macos-build.yml
vendored
4
.github/workflows/macos-build.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
||||
meson ninja pkg-config gettext perl \
|
||||
gtk+3 gdk-pixbuf pango adwaita-icon-theme \
|
||||
hicolor-icon-theme glib dbus \
|
||||
enchant-applespell gtk-mac-bundler
|
||||
enchant gtk-mac-bundler
|
||||
|
||||
- name: Configure
|
||||
run: |
|
||||
@@ -55,7 +55,7 @@ jobs:
|
||||
set -eux
|
||||
VERSION="$(git describe --tags --always)"
|
||||
PREFIX="$(brew --prefix)"
|
||||
ENCHANT_PREFIX="$(brew --prefix enchant-applespell)"
|
||||
ENCHANT_PREFIX="$(brew --prefix enchant)"
|
||||
|
||||
sed "s/@VERSION@/${VERSION}/g" osx/Info.plist.in > osx/Info.plist
|
||||
|
||||
|
||||
Reference in New Issue
Block a user