mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
Some checks failed
CodeQL / CodeQL (push) Has been cancelled
CI / GitHub Env Debug (push) Has been cancelled
CI / Release Setup (push) Has been cancelled
Build GH-Pages / prep (push) Has been cancelled
CI / Docker (push) Has been cancelled
CI / Homebrew (push) Has been cancelled
CI / Linux (push) Has been cancelled
CI / Linux Copr (push) Has been cancelled
CI / Linux Flatpak (push) Has been cancelled
CI / Windows (push) Has been cancelled
CI / Coverage-Homebrew-macos-13 (push) Has been cancelled
CI / Coverage-Homebrew-macos-14 (push) Has been cancelled
CI / Coverage-Homebrew-macos-15 (push) Has been cancelled
CI / Coverage-Homebrew-ubuntu-latest (push) Has been cancelled
CI / Coverage-Linux-AppImage (push) Has been cancelled
CI / Coverage-Windows-AMD64 (push) Has been cancelled
CI / Release (push) Has been cancelled
CI / Release Homebrew Beta (push) Has been cancelled
Build GH-Pages / call-jekyll-build (push) Has been cancelled
build(deps): bump actions/download-artifact in the github-actions group Bumps the github-actions group with 1 update: [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
73 lines
1.9 KiB
YAML
73 lines
1.9 KiB
YAML
---
|
|
name: CI-Copr
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- prereleased
|
|
- released
|
|
workflow_call:
|
|
secrets:
|
|
COPR_BETA_WEBHOOK_TOKEN:
|
|
required: false
|
|
COPR_STABLE_WEBHOOK_TOKEN:
|
|
required: false
|
|
COPR_CLI_CONFIG:
|
|
required: false
|
|
GH_BOT_TOKEN:
|
|
required: false
|
|
VIRUSTOTAL_API_KEY:
|
|
required: false
|
|
|
|
concurrency:
|
|
group: "_${{ github.workflow }}-${{ github.ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
call-copr-ci:
|
|
uses: LizardByte/copr-ci/.github/workflows/copr-ci.yml@master
|
|
with:
|
|
copr_pr_webhook_token: "05fc9b07-a19b-4f83-89b2-ae1e7e0b5282"
|
|
github_org_owner: LizardByte
|
|
copr_ownername: lizardbyte
|
|
auto_update_package: true
|
|
job_timeout: 90
|
|
secrets:
|
|
COPR_BETA_WEBHOOK_TOKEN: ${{ secrets.COPR_BETA_WEBHOOK_TOKEN }}
|
|
COPR_STABLE_WEBHOOK_TOKEN: ${{ secrets.COPR_STABLE_WEBHOOK_TOKEN }}
|
|
COPR_CLI_CONFIG: ${{ secrets.COPR_CLI_CONFIG }}
|
|
|
|
release:
|
|
name: Release
|
|
if:
|
|
github.event_name == 'release' &&
|
|
startsWith(github.repository, 'LizardByte/')
|
|
needs:
|
|
- call-copr-ci
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download build artifacts
|
|
uses: actions/download-artifact@v5
|
|
with:
|
|
path: artifacts
|
|
pattern: build-*
|
|
merge-multiple: true
|
|
|
|
- name: Debug artifacts
|
|
run: ls -l artifacts
|
|
|
|
- name: Update GitHub Release
|
|
uses: LizardByte/actions/actions/release_create@v2025.715.25226
|
|
with:
|
|
allowUpdates: true
|
|
body: ${{ github.event.release.body }}
|
|
deleteOtherPreReleases: false
|
|
generateReleaseNotes: false
|
|
name: ${{ github.event.release.name }}
|
|
prerelease: true
|
|
tag: ${{ github.event.release.tag_name }}
|
|
token: ${{ secrets.GH_BOT_TOKEN }}
|
|
virustotal_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
|