From fffc39c40207179c25c3acec4d06e5d7a106573a Mon Sep 17 00:00:00 2001 From: Matthew McKinnon Date: Sat, 27 Sep 2025 13:54:11 +1000 Subject: [PATCH] chore: move pg string to env --- .github/workflows/infra-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/infra-build.yml b/.github/workflows/infra-build.yml index 6e8ae99..66d5629 100644 --- a/.github/workflows/infra-build.yml +++ b/.github/workflows/infra-build.yml @@ -11,6 +11,9 @@ jobs: runs-on: self-hosted container: image: node:20-bullseye + + env: + PG_CONN_STR: ${{ secrets.PG_CONN_STR }} # available to all steps steps: - name: Checkout code @@ -45,7 +48,6 @@ jobs: - name: Opentofu Plan id: plan run: | - export PG_CONN_STR="${{ secrets.PG_CONN_STR }}" tofu plan -out=tfplan -detailed-exitcode - name: Opentofu Apply