mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-11 15:11:25 +00:00
38 lines
782 B
YAML
38 lines
782 B
YAML
![]() |
name: Nightly Debian Packaging
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: 0 9 * * *
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
paths:
|
||
|
- debian/**
|
||
|
- .github/workflows/nightly_debian.yml
|
||
|
- .github/workflows/build_debian_src.yml
|
||
|
- .github/workflows/package_ppa.yml
|
||
|
- .github/workflows/package_obs.yml
|
||
|
|
||
|
permissions:
|
||
|
contents: write
|
||
|
packages: write
|
||
|
|
||
|
jobs:
|
||
|
package-ppa:
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
series: [plucky, oracular, noble, jammy]
|
||
|
uses: ./.github/workflows/package_ppa.yml
|
||
|
with:
|
||
|
ppa_repo: daily
|
||
|
series: ${{ matrix.series }}
|
||
|
secrets: inherit
|
||
|
|
||
|
package-obs:
|
||
|
uses: ./.github/workflows/package_obs.yml
|
||
|
with:
|
||
|
obs_repo: meshtasticd
|
||
|
series: unstable
|
||
|
secrets: inherit
|