diff --git a/.github/workflows/dev-deploy.yml b/.github/workflows/dev-deploy.yml index 04cc92a..0d36c27 100644 --- a/.github/workflows/dev-deploy.yml +++ b/.github/workflows/dev-deploy.yml @@ -44,10 +44,12 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Create app.env file - uses: vicradon/create-env-action@v1.0.0 + uses: vicradon/create-env-action@v1.0.1 with: action_input_file: "app-sample.env" action_output_file: "app.env" + action_true_string_variables: | + MAIL_PASSWORD APP_NAME: "development" APP_URL: "https://deployment.api-golang.boilerplate.hng.tech" SERVER_PORT: ${{ secrets.SERVER_PORT }} diff --git a/.github/workflows/staging-deploy.yml b/.github/workflows/staging-deploy.yml index d4105f9..57640b5 100644 --- a/.github/workflows/staging-deploy.yml +++ b/.github/workflows/staging-deploy.yml @@ -44,10 +44,12 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Create app.env file - uses: vicradon/create-env-action@v1.0.0 + uses: vicradon/create-env-action@v1.0.1 with: action_input_file: "app-sample.env" action_output_file: "app.env" + action_true_string_variables: | + MAIL_PASSWORD APP_NAME: "staging" APP_URL: "https://staging.api-golang.boilerplate.hng.tech" SERVER_PORT: ${{ secrets.SERVER_PORT }}