Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Packages CI/CD with latest versions of Debian/Ubuntu #905

Merged
merged 5 commits into from
Jul 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
matrix:
distro:
- debian-unstable
- debian-bookworm
- debian-bullseye
- ubuntu-jammy
- ubuntu-focal
Expand All @@ -40,20 +41,27 @@
env:
REF: ${{ github.ref }}

- uses: legoktm/gh-action-auto-dch@18025761b70898aac9ddb5bdc726bcd083926714 # master
- uses: legoktm/gh-action-auto-dch@main
Fixed Show fixed Hide fixed
with:
fullname: Kiwix builder
email: release+launchpad@kiwix.org
distro: ${{ matrix.distro }}

- uses: legoktm/gh-action-build-deb@4f3fbf87de8bf0870f44624693cae17b7ad34ca2 # debian-unstable
- uses: legoktm/gh-action-build-deb@debian-unstable
Fixed Show fixed Hide fixed
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@1f7501377e7c229f373748af433e5c3818eeae6e # debian-bullseye
- uses: legoktm/gh-action-build-deb@debian-bookworm
Fixed Show fixed Hide fixed
if: matrix.distro == 'debian-bookworm'
name: Build package for debian-bookworm
id: build-debian-bookworm
with:
args: --no-sign

- uses: legoktm/gh-action-build-deb@debian-bullseye
Fixed Show fixed Hide fixed
if: matrix.distro == 'debian-bullseye'
name: Build package for debian-bullseye
id: build-debian-bullseye
Expand Down
Loading