Weekly Development Flatpak #123
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
# Generate a development Flatpak every friday at midnight | |
on: | |
schedule: | |
- cron: "0 0 * * 5" | |
name: Weekly Development Flatpak | |
jobs: | |
flatpak: | |
name: "Flatpak" | |
# Need to specify 24.04 until it becomes stable and we can use "latest" | |
# again | |
runs-on: ubuntu-24.04 | |
container: | |
image: bilelmoussaoui/flatpak-github-actions:gnome-nightly | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 | |
with: | |
bundle: org.gnome.GTG.Devel.flatpak | |
manifest-path: build-aux/org.gnome.GTG.Devel.json | |
cache-key: flatpak-builder-${{ github.sha }} |