From c2f6ce4663d64dfb9e6f087f10afa1b4853dc1ba Mon Sep 17 00:00:00 2001 From: Samuel Adetunji Date: Mon, 23 Sep 2024 03:11:17 -0500 Subject: [PATCH] throw the outputs in a string! --- .github/workflows/main.yml | 2 +- .github/workflows/predeploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4d0b1b8..3fb65e5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: - run: echo ${{ steps.plan.outputs.stderr }} - run: echo ${{ steps.plan.outputs.exitcode }} outputs: - apigw: terraform output -raw api-route + apigw: "$(terraform output -raw api-route)" web-deploy: name: 💫 Deploy runs-on: ubuntu-latest diff --git a/.github/workflows/predeploy.yml b/.github/workflows/predeploy.yml index e645f89..4569e69 100644 --- a/.github/workflows/predeploy.yml +++ b/.github/workflows/predeploy.yml @@ -33,7 +33,7 @@ jobs: - run: echo ${{ steps.plan.outputs.stderr }} - run: echo ${{ steps.plan.outputs.exitcode }} outputs: - apigw: terraform output -raw api-route + apigw: "$(terraform output -raw api-route)" web-deploy: name: 💫 Build runs-on: ubuntu-latest