Files
Sunshine/.github/workflows/publish-screenshots.yml
2026-07-29 20:30:43 -04:00

24 lines
549 B
YAML

---
name: Publish Screenshots
on:
workflow_run:
workflows: ["CI"]
types:
- completed
permissions: {}
jobs:
publish:
if: github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure'
permissions:
actions: read
contents: write
pull-requests: write
statuses: write
uses: LizardByte/tray/.github/workflows/_publish-screenshots.yml@master
with:
artifact-name-prefix: sunshine-screenshots-
source-run-id: ${{ github.event.workflow_run.id }}