Skip to content

Build Ghostty

Build Ghostty #11

Workflow file for this run

name: Build Ghostty
on:
workflow_dispatch:
env:
VERSION: 1.0.0
jobs:
build-ghostty:
runs-on: ubuntu-24.04
steps:
- name: Checkout ghostty-ubuntu
uses: actions/checkout@v4
- name: Install Build Dependencies
run: ./install-build-dependencies.sh
- name: Fetch Ghostty Source
run: ./fetch-upstream.sh
- name: Build Package
run: debuild --prepend-path /usr/local/bin
working-directory: ghostty-${{ env.VERSION }}