Skip to content

Commit

Permalink
Add Debian to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kelson42 committed Jul 26, 2023
1 parent a59661e commit cccf202
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
fail-fast: false
matrix:
distro:
- debian-unstable
- debian-bullseye
- debian-buster
- ubuntu-jammy
- ubuntu-focal
steps:
Expand All @@ -39,6 +42,27 @@ jobs:
email: [email protected]
distro: ${{ matrix.distro }}

- uses: legoktm/gh-action-build-deb@debian-unstable
if: matrix.distro == 'debian-unstable'
name: Build package for debian-unstable
id: build-debian-unstable
with:
args: --no-sign

- uses: legoktm/gh-action-build-deb@debian-bullseye
if: matrix.distro == 'debian-bullseye'
name: Build package for debian-bullseye
id: build-debian-bullseye
with:
args: --no-sign

- uses: legoktm/gh-action-build-deb@debian-buster
if: matrix.distro == 'debian-buster'
name: Build package for debian-buster
id: build-debian-buster
with:
args: --no-sign

- uses: legoktm/gh-action-build-deb@ubuntu-jammy
if: matrix.distro == 'ubuntu-jammy'
name: Build package for ubuntu-jammy
Expand Down

0 comments on commit cccf202

Please sign in to comment.