Debian Packaging #5341
This file contains 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: Debian Packaging | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 8 * * *' | |
jobs: | |
build-deb-bookworm: | |
runs-on: ubuntu-latest | |
name: Debian pipeline for bookworm | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Execute Docker debpkg action | |
uses: ./.github/actions/debpkg-bookworm | |
- name: Store Debian package artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Debian binary package files | |
path: '*.deb' | |
- name: Store Debian package build info | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Debian buildinfo file | |
path: '*.buildinfo' | |
build-deb-sid: | |
runs-on: ubuntu-latest | |
name: Debian pipeline for sid | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Execute Docker debpkg action | |
uses: ./.github/actions/debpkg-sid | |
- name: Store Debian package artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Debian binary package files | |
path: '*.deb' | |
- name: Store Debian package build info | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Debian buildinfo file | |
path: '*.buildinfo' |