Build Ghostty #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Ghostty | |
on: | |
workflow_dispatch: | |
env: | |
VERSION: 1.0.0 | |
jobs: | |
build-ghostty: | |
name: 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 }} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: package | |
path: ghostty_1.0.0-0ubuntu1ppa1_amd64.deb | |