GitHub Actions: Trigger PPA stable builds upon release (#5777)

This commit is contained in:
Austin 2025-01-06 19:45:59 -05:00 committed by GitHub
parent e5dbcf5bce
commit 57766d47a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

20
.github/workflows/release_channels.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Trigger release workflows upon Publish
on:
release:
types: [published]
permissions: read-all
jobs:
package-ppa:
strategy:
fail-fast: false
matrix:
series: [plucky, oracular, noble, jammy]
uses: ./.github/workflows/package_ppa.yml
with:
ppa_repo: |-
${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }}
series: ${{ matrix.series }}
secrets: inherit