From a7cd4e955432e06bdefb65e5b31883a04f7214c0 Mon Sep 17 00:00:00 2001 From: Ginger Date: Wed, 10 Sep 2025 10:12:57 -0400 Subject: [PATCH] fix: Use apt-get and dpkg instead of apt (which isn't stable in scripts) --- .forgejo/workflows/build-debian.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build-debian.yml b/.forgejo/workflows/build-debian.yml index f62034c2..d4cfb013 100644 --- a/.forgejo/workflows/build-debian.yml +++ b/.forgejo/workflows/build-debian.yml @@ -123,9 +123,9 @@ jobs: run: | echo "Installing: ${{ steps.cargo-deb.outputs.path }}" - apt install -y ${{ steps.cargo-deb.outputs.path }} + apt-get install -y ${{ steps.cargo-deb.outputs.path }} - apt info continuwuity + dpkg -s continuwuity [ -f /usr/bin/conduwuit ] && echo "✅ Binary installed successfully" [ -f /usr/lib/systemd/system/conduwuit.service ] && echo "✅ Systemd service installed"