Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,17 @@ jobs:
${{ runner.os }}-${{ matrix.arch }}-ghostty-

- name: Setup build environment
run: |
ZIG_VERSION=0.14.0 ./setup.sh

- name: Build Ghostty AppImage
run: |
if [ "${{ github.event_name }}" == "schedule" ]; then
export ZIG_VERSION=0.15.1
echo "tip" > VERSION
else
export ZIG_VERSION=0.14.0
fi
ZIG_VERSION=$ZIG_VERSION ./setup.sh

- name: Build Ghostty AppImage
run: |
./build.sh

- name: Upload AppImage Artifacts
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export ICON="./ghostty-${GHOSTTY_VERSION}/zig-out/share/icons/hicolor/256x256/ap

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

Expand Down