From aeb9ab70c8c9a63eaf6e6c9d4aa7e59e6d650111 Mon Sep 17 00:00:00 2001 From: Josh Ibbotson Date: Sun, 12 May 2024 07:57:21 +0100 Subject: [PATCH] Updated env variable for auto.yml so build works. --- .github/workflows/auto.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto.yml b/.github/workflows/auto.yml index 93a29e4..5541393 100644 --- a/.github/workflows/auto.yml +++ b/.github/workflows/auto.yml @@ -28,6 +28,8 @@ jobs: - name: Run tests ✅ run: yarn test + env: + APP_SERVER_URL: ${{ secrets.APP_SERVER_URL }} build: name: Build image 🛠 @@ -39,4 +41,6 @@ jobs: - name: Build Docker image 🐳 run: | - docker build -f docker/staging/Dockerfile . --tag ${{ secrets.DOCKER_USERNAME }}/stage-deployment \ No newline at end of file + docker build -f docker/staging/Dockerfile . --tag ${{ secrets.DOCKER_USERNAME }}/stage-deployment + env: + APP_SERVER_URL: ${{ secrets.APP_SERVER_URL }}