duckstation/.github/workflows/flathub-publish.yml
Stenzek 5bc38ffd63
Some checks failed
Automated Builds / Windows (push) Has been cancelled
Automated Builds / Linux AppImage (push) Has been cancelled
Automated Builds / Linux Flatpak (push) Has been cancelled
Automated Builds / MacOS (push) Has been cancelled
Automated Builds / Create Release (push) Has been cancelled
CI: Split and add dedicated Flathub publish
2024-11-12 13:53:17 +10:00

23 lines
474 B
YAML

name: Flathub Publish
on:
workflow_dispatch:
inputs:
flathub_branch:
description: "Flathub branch to push to"
required: true
default: "stable"
type: "choice"
options:
- "stable"
- "beta"
jobs:
linux-flatpak:
name: Build Flatpak
uses: "./.github/workflows/linux-flatpak-build.yml"
with:
flathub_publish: true
flathub_branch: ${{ inputs.flathub_branch }}
secrets: inherit