From fe01ff359341c8cfab6a9a7c491b11a885267d94 Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Wed, 31 Jan 2024 17:02:40 -0800 Subject: [PATCH] wip: fixes incorrect input passing --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8b29c79ca..c49f1a8e2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -93,9 +93,10 @@ jobs: token: ${{ secrets.token }} - name: Apply updates run: | + echo '${{ steps.discover.outputs.json }}' > /tmp/updates.json updater update deployments \ -e "${{ inputs.environment }}" \ - -i '${{ steps.discover.outputs.json }}' \ + -i /tmp/updates.json \ "${{inputs.deployment_root_path}}" - name: Run diff run: git --no-pager diff