mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-08-07 10:13:31 +00:00
24 lines
549 B
YAML
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 }}
|