From abb83eef273c0b5fc01bd8a9af449c823e83e0fe Mon Sep 17 00:00:00 2001 From: Und3rf10w Date: Mon, 23 Dec 2024 18:16:13 -0500 Subject: [PATCH] fix(ci): Run installer instead of build on test workflow --- .github/workflows/test_application.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_application.yml b/.github/workflows/test_application.yml index 3c5b2b0..209a071 100644 --- a/.github/workflows/test_application.yml +++ b/.github/workflows/test_application.yml @@ -24,13 +24,13 @@ jobs: apt-get update apt-get install -y dpkg-dev curl bleachbit tor iptables secure-delete - - name: Build .deb Package + - name: Run Installer Script run: | - dpkg-deb --build kali-anonsurf-deb-src/ kali-anonsurf.deb + chmod +x installer.sh + ./installer.sh - - name: Install .deb Package + - name: Verify Installation run: | - dpkg -i kali-anonsurf.deb || apt-get -f install -y && dpkg -i kali-anonsurf.deb which anonsurf || { echo "ERROR: anonsurf is not installed."; exit 1; } - name: Test AnonSurf Functionality