mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-10-29 11:23:23 +00:00
ci(copr): Trigger release job only for non-prereleases (#4297)
Updated the CI workflow to ensure the release job runs only when a release is not marked as a prerelease. This prevents the release job from executing on prerelease events.
This commit is contained in:
parent
86188d47a7
commit
2a3a4094ac
3
.github/workflows/ci-copr.yml
vendored
3
.github/workflows/ci-copr.yml
vendored
@ -43,7 +43,8 @@ jobs:
|
||||
name: Release
|
||||
if:
|
||||
github.event_name == 'release' &&
|
||||
startsWith(github.repository, 'LizardByte/')
|
||||
startsWith(github.repository, 'LizardByte/') &&
|
||||
github.event.release.prerelease == false
|
||||
needs:
|
||||
- call-copr-ci
|
||||
permissions:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user