mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-25 13:16:11 +03:00
21 lines
485 B
YAML
21 lines
485 B
YAML
on:
|
|
workflow_dispatch: {}
|
|
|
|
name: Flatpak
|
|
|
|
jobs:
|
|
flatpak:
|
|
name: "Flatpak"
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: bilelmoussaoui/flatpak-github-actions:gnome-43
|
|
options: --privileged
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: flatpak/flatpak-github-actions/flatpak-builder@v4
|
|
with:
|
|
bundle: ghostty.flatpak
|
|
manifest-path: com.mitchellh.ghostty.yml
|
|
branch: tip
|
|
cache-key: flatpak-builder-${{ github.sha }}-v1
|