From e30703258239acc8df690d4216e020a86c8fd335 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal <59223300+nikhilbadyal@users.noreply.github.com> Date: Sat, 26 Aug 2023 12:02:18 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Use=20Local=20compose=20(#318)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-artifact.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-artifact.yml b/.github/workflows/build-artifact.yml index a0153e8..9154e17 100644 --- a/.github/workflows/build-artifact.yml +++ b/.github/workflows/build-artifact.yml @@ -73,8 +73,12 @@ jobs: - name: Build Revanced APKs run: | - docker-compose -f docker-compose-local.yml up --build - + if [ -n "CI_TEST" ]; then + echo "In CI Testing. Using local compose file." + docker-compose -f docker-compose-local.yml up --build + else + docker-compose up --build + fi - name: Upload Build APKS uses: actions/upload-artifact@main with: