Meshtastic Firmware 2.5.19.d5cd6f8 Alpha (Revoked) #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger release workflows upon Publish | ||
on: | ||
release: | ||
types: [published, released] | ||
permissions: read-all | ||
jobs: | ||
package-ppa: | ||
Check failure on line 10 in .github/workflows/release_channels.yml
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
series: [plucky, oracular, noble, jammy] | ||
uses: ./.github/workflows/package_ppa.yml | ||
with: | ||
ppa_repo: |- | ||
ppa:meshtastic/${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }} | ||
series: ${{ matrix.series }} | ||
secrets: inherit | ||
package-obs: | ||
uses: ./.github/workflows/package_obs.yml | ||
with: | ||
obs_project: |- | ||
home:meshtastic:${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }} | ||
series: |- | ||
${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }} | ||
secrets: inherit | ||
# hook-copr: | ||
# uses: ./.github/workflows/hook_copr.yml | ||
# with: | ||
# copr_project: |- | ||
# ${{ contains(github.event.release.name, 'Beta') && 'beta' || contains(github.event.release.name, 'Alpha') && 'alpha' }} | ||
# secrets: inherit |