Skip to content

Commit 4e5e63a

Browse files
author
psadi
committed
chore: zig version 0.15.1 for tip builds
1 parent 812e01d commit 4e5e63a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,12 @@ jobs:
5454
5555
- name: Setup build environment
5656
run: |
57-
ZIG_VERSION=0.14.0 ./setup.sh
57+
if [ "${{ github.event_name }}" == "schedule" ]; then
58+
export ZIG_VERSION=0.15.1
59+
else
60+
export ZIG_VERSION=0.14.0
61+
fi
62+
ZIG_VERSION=$ZIG_VERSION ./setup.sh
5863
5964
- name: Build Ghostty AppImage
6065
run: |

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export ICON="./ghostty-${GHOSTTY_VERSION}/zig-out/share/icons/hicolor/256x256/ap
6161

6262
./quick-sharun ./ghostty-${GHOSTTY_VERSION}/zig-out/bin/ghostty
6363
cp -rf ./ghostty-${GHOSTTY_VERSION}/zig-out/share/* ./AppDir/share/
64-
echo 'unset ARGV0' >> ./AppDir/.env
64+
echo 'unset ARGV0' >>./AppDir/.env
6565
# temp fix for https://github.com/pkgforge-dev/ghostty-appimage/issues/93
6666
ln -s /usr/share/glvnd/egl_vendor.d/10_nvidia.json ./AppDir/share/glvnd/egl_vendor.d/10_nvidia.json
6767

0 commit comments

Comments
 (0)