Skip to content

Simplify to dpkg-deb #96

Simplify to dpkg-deb

Simplify to dpkg-deb #96

Workflow file for this run

name: Build Ghostty
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
build-ghostty:
name: Build Ghostty
strategy:
matrix:
ubuntu_version: ["22.04", "24.04", "24.10"]
runs-on: ubuntu-latest
container:
image: ubuntu:${{ matrix.ubuntu_version }}
steps:
- name: Checkout ghostty-ubuntu
uses: actions/checkout@v4
- name: Setup Build Env
run: ./setup-env.sh
- name: Set Release Distribution
run: |
- name: Build Ghostty
run: ./build-ghostty.sh "${{ matrix.ubuntu_version }}"
- name: Lint .deb Package
run: |
echo $PWD
ls
lintian ghostty_*.deb || true # Lintian shouldn't fail our build yet
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: package-${{ matrix.ubuntu_version }}
retention-days: 7
path: ghostty_*.deb