Tooth/.github/workflows/build.yml

21 lines
527 B
YAML
Raw Normal View History

2021-02-02 15:41:27 +00:00
on:
push:
2022-11-13 20:57:43 +00:00
branches: [main]
2021-02-02 15:41:27 +00:00
pull_request:
name: CI
jobs:
flatpak-builder:
name: "Flatpak Builder"
2022-11-13 20:57:43 +00:00
runs-on: ubuntu-latest
2021-02-02 15:41:27 +00:00
container:
2022-11-13 20:57:43 +00:00
image: bilelmoussaoui/flatpak-github-actions:gnome-43
2021-02-02 15:41:27 +00:00
options: --privileged
steps:
2022-11-13 20:57:43 +00:00
- uses: actions/checkout@v3
- uses: flatpak/flatpak-github-actions/flatpak-builder@v4
2021-02-02 15:41:27 +00:00
with:
2022-11-13 20:57:43 +00:00
bundle: "dev.geopjr.tooth.flatpak"
manifest-path: "dev.geopjr.tooth.json"
run-tests: "true"
2022-11-13 20:57:43 +00:00
cache-key: flatpak-builder-${{ github.sha }}