fix: Use apt-get and dpkg instead of apt (which isn't stable in scripts)

This commit is contained in:
Ginger 2025-09-10 10:12:57 -04:00
commit aab4c5eaee
No known key found for this signature in database

View file

@ -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"