From 86bacaeeb08e411172c30e9ff754855cfc695fe1 Mon Sep 17 00:00:00 2001 From: iampato <858wpwaweru@gmail.com> Date: Fri, 27 Oct 2023 01:13:30 +0300 Subject: [PATCH] added env --- .github/workflows/production.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index af36599..37d88e6 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -25,6 +25,12 @@ jobs: with: mask-password: 'false' + # create an .env file and add the following variables PORT=9007 + - name: touch .env + run: | + touch .env + echo "PORT=9007" >> .env + - name: Build and Push Docker Image env: ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}