ladybird/.github/workflows/flatpak-template.yml
dependabot[bot] 043adecb13 CI: Bump actions/checkout from 6.0.3 to 7.0.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6.0.3...v7.0.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-19 09:52:09 +02:00

28 lines
712 B
YAML

name: Flatpak Build
on:
workflow_call:
inputs:
arch:
required: true
type: string
runner_labels:
required: true
type: string
jobs:
flatpak:
runs-on: ${{ fromJSON(inputs.runner_labels) }}
container:
image: ghcr.io/flathub-infra/flatpak-github-actions:kde-6.9
options: --privileged
steps:
- uses: actions/checkout@v7.0.0
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: Ladybird.flatpak
manifest-path: Meta/CMake/flatpak/org.ladybird.Ladybird.json
arch: ${{ inputs.arch }}
# Note: default cache key is 'flatpak-builder-${arch}-${sha256(manifestPath)}'