From e2511e8be149cd737e0062befd51f1a02ab49cf8 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Tue, 24 Feb 2026 22:41:00 -0700 Subject: [PATCH] Delete .github/workflows/debian-build.yml --- .github/workflows/debian-build.yml | 48 ------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/debian-build.yml diff --git a/.github/workflows/debian-build.yml b/.github/workflows/debian-build.yml deleted file mode 100644 index dc8f312f..00000000 --- a/.github/workflows/debian-build.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Debian Build - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - debian_build: - runs-on: ubuntu-24.04 - container: - image: debian:bookworm - - steps: - - name: Install packaging tooling and build dependencies - run: | - set -eux - export DEBIAN_FRONTEND=noninteractive - apt-get update - apt-get install -y --no-install-recommends \ - git ca-certificates \ - build-essential dpkg-dev debhelper fakeroot \ - pkg-config meson ninja-build \ - gettext iso-codes \ - libcanberra-dev libdbus-glib-1-dev libglib2.0-dev libgtk-3-dev libayatana-appindicator3-dev \ - liblua5.3-dev libpci-dev libperl-dev libssl-dev \ - python3-dev python3-cffi desktop-file-utils - - uses: actions/checkout@v4 - with: - submodules: true - - - name: Build Debian packages - run: | - set -eux - dpkg-buildpackage -us -uc -b - - - name: Collect Debian artifacts - run: | - set -eux - mkdir -p artifacts - cp -v ../*.deb ../*.changes ../*.buildinfo artifacts/ - - - name: Upload Debian artifacts - uses: actions/upload-artifact@v4 - with: - name: zoitechat-debian-packages - path: artifacts/*