[release] Fix output value (#8839)

This commit is contained in:
Jesse Hills 2025-05-19 14:16:39 +12:00 committed by GitHub
parent 2e15ee232d
commit b8a96f59f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ jobs:
outputs: outputs:
tag: ${{ steps.tag.outputs.tag }} tag: ${{ steps.tag.outputs.tag }}
branch_build: ${{ steps.tag.outputs.branch_build }} branch_build: ${{ steps.tag.outputs.branch_build }}
deploy_env: ${{ steps.tag.outputs.environment }} deploy_env: ${{ steps.tag.outputs.deploy_env }}
steps: steps:
- uses: actions/checkout@v4.1.7 - uses: actions/checkout@v4.1.7
- name: Get tag - name: Get tag
@ -287,7 +287,7 @@ jobs:
npx netlify-cli deploy \ npx netlify-cli deploy \
--dir api-docs \ --dir api-docs \
--no-build \ --no-build \
--alias ${{ needs.init.outputs.deploy_env }} \ --alias "${{ needs.init.outputs.deploy_env }}" \
--message "Deploy API docs for ${{ needs.init.outputs.tag }}" --message "Deploy API docs for ${{ needs.init.outputs.tag }}"
- name: Deploy to netlify production - name: Deploy to netlify production