mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-18 19:50:18 +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 \
|
meson ninja pkg-config gettext perl \
|
||||||
gtk+3 gdk-pixbuf pango adwaita-icon-theme \
|
gtk+3 gdk-pixbuf pango adwaita-icon-theme \
|
||||||
hicolor-icon-theme glib dbus \
|
hicolor-icon-theme glib dbus \
|
||||||
enchant-applespell gtk-mac-bundler
|
enchant gtk-mac-bundler
|
||||||
|
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: |
|
run: |
|
||||||
@@ -55,7 +55,7 @@ jobs:
|
|||||||
set -eux
|
set -eux
|
||||||
VERSION="$(git describe --tags --always)"
|
VERSION="$(git describe --tags --always)"
|
||||||
PREFIX="$(brew --prefix)"
|
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
|
sed "s/@VERSION@/${VERSION}/g" osx/Info.plist.in > osx/Info.plist
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user