diff --git a/.github/workflows/build-artifact.yml b/.github/workflows/build-artifact.yml index 1a45a22..1178a97 100644 --- a/.github/workflows/build-artifact.yml +++ b/.github/workflows/build-artifact.yml @@ -83,10 +83,10 @@ jobs: run: | if [[ "${{ inputs.CI_TEST }}" =~ ^(true|True|1)$ ]]; then echo "In CI Testing. Using local compose file." - docker-compose -f docker-compose-local.yml up --build + docker compose -f docker-compose-local.yml up --build else echo "Using Prod compose file." - docker-compose up --build + docker compose up --build fi - name: Upload Build APKS uses: actions/upload-artifact@main diff --git a/README.md b/README.md index 6a08ea5..ef37cd9 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ You can use any of the following methods to build. 4. Update `.env` file if you want some customization(See notes) 5. Run script with ```shell - docker-compose up --build + docker compose up --build ``` - 🐳With Docker