From 157b94c04de249adcb8dbf5fcaefb6a47112310f Mon Sep 17 00:00:00 2001 From: Slim Amamou Date: Wed, 27 Aug 2025 13:58:13 +0100 Subject: [PATCH] Fix CICD error saying inputs.IMAGE_REPOSITORY and .IMAGE_NAME are missing --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b104e50..0f836ba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,6 +5,7 @@ on: jobs: build-push-php: + environment: PROD runs-on: ubuntu-latest timeout-minutes: 15 steps: @@ -18,6 +19,7 @@ jobs: IMAGE_REPOSITORY: ${{ vars.IMAGE_REPO }} build-push-caddy: + environment: PROD # Same Dockerfile as php, with a build target which is after needs: [build-push-php] runs-on: ubuntu-latest