chore(build): added Debian

Signed-off-by: Boris Yumankulov <boria138@altlinux.org>
This commit is contained in:
2025-12-03 12:32:36 +05:00
parent f4275dd465
commit e22215127a
10 changed files with 161 additions and 2 deletions

View File

@@ -8,6 +8,37 @@ env:
PACKAGE: "portprotonqt"
jobs:
build-deb:
name: Build Debian Package
runs-on: ubuntu-22.04
steps:
- name: Install build dependencies
run: |
apt-get update
apt-get install -y build-essential git python3-dev python3-pip python3-build \
python3-installer python3-wheel debhelper dh-python \
devscripts python3-all bash-completion pybuild-plugin-pyproject python3-setuptools
- name: Checkout repo
uses: https://gitea.com/actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
- name: Build Debian package
run: |
# Copy the debian directory to the root for proper packaging
cp -r build-aux/debian .
# Build the package
dpkg-buildpackage -us -uc -b
mv ../*.deb .
- name: Upload Debian package
uses: https://gitea.com/actions/gitea-upload-artifact@v4
with:
name: PortProtonQt-Debian
path: "*.deb"
build-appimage:
name: Build AppImage
runs-on: ubuntu-22.04

View File

@@ -147,9 +147,38 @@ jobs:
name: PortProtonQt-RPM-Fedora-${{ matrix.fedora_version }}
path: /home/rpmbuild/RPMS/**/*.rpm
build-deb:
name: Build Debian Package
runs-on: ubuntu-22.04
steps:
- name: Install build dependencies
run: |
apt-get update
apt-get install -y build-essential git python3-dev python3-pip python3-build \
python3-installer python3-wheel debhelper dh-python \
devscripts python3-all bash-completion pybuild-plugin-pyproject python3-setuptools
- name: Checkout repo
uses: https://gitea.com/actions/checkout@v4
- name: Build Debian package
run: |
# Copy the debian directory to the root for proper packaging
cp -r build-aux/debian .
# Build the package
dpkg-buildpackage -us -uc -b
- name: Upload Debian package
uses: https://gitea.com/actions/gitea-upload-artifact@v4
with:
name: PortProtonQt-Debian
path: "*.deb"
release:
name: Create and Publish Release
needs: [build-appimage, build-arch, build-fedora]
needs: [build-appimage, build-arch, build-fedora, build-deb]
runs-on: ubuntu-latest
steps:
- uses: https://gitea.com/actions/checkout@v4