From 9876ab1e3e6acf9248f6b4cf0ced04c2dbec496b Mon Sep 17 00:00:00 2001 From: billz Date: Sat, 8 Feb 2025 01:22:52 -0800 Subject: [PATCH] Specify --check 0 to skip connectivity check --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4eac8c5c..66c952ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: cat > stage-raspap/package-raspap/00-run-chroot.sh <<-EOF #!/bin/bash apt-get update -y && apt-get install -y curl dhcpcd5 iptables procps - curl -sL https://install.raspap.com | bash -s -- --yes --openvpn 1 --restapi 1 --adblock 1 --wireguard 1 --tcp-bbr 1 + curl -sL https://install.raspap.com | bash -s -- --yes --openvpn 1 --restapi 1 --adblock 1 --wireguard 1 --tcp-bbr 1 --check 0 EOF } && chmod +x stage-raspap/package-raspap/00-run-chroot.sh &&