From b8a96f59f0468a2a94efca827dda1bd3750022ee Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 19 May 2025 14:16:39 +1200 Subject: [PATCH] [release] Fix output value (#8839) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 098f1ec733..2d8e6d34c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: outputs: tag: ${{ steps.tag.outputs.tag }} branch_build: ${{ steps.tag.outputs.branch_build }} - deploy_env: ${{ steps.tag.outputs.environment }} + deploy_env: ${{ steps.tag.outputs.deploy_env }} steps: - uses: actions/checkout@v4.1.7 - name: Get tag @@ -287,7 +287,7 @@ jobs: npx netlify-cli deploy \ --dir api-docs \ --no-build \ - --alias ${{ needs.init.outputs.deploy_env }} \ + --alias "${{ needs.init.outputs.deploy_env }}" \ --message "Deploy API docs for ${{ needs.init.outputs.tag }}" - name: Deploy to netlify production