We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c395b commit 8bc30c3Copy full SHA for 8bc30c3
.github/workflows/deploy.yml
@@ -54,8 +54,8 @@ jobs:
54
contents: write
55
attestations: write
56
with:
57
- RELEASE_TYPE: ${{ github.event.inputs.deployment_type == 'Release from Commit' && '' || github.event.inputs.deployment_type }}
58
- COMMIT_HASH: ${{ github.event.inputs.deployment_type != 'Release from Commit' && github.event.inputs.deployment_type || '' }}
+ RELEASE_TYPE: ${{ (github.event.inputs.deployment_type != 'Release from Commit' && github.event.inputs.deployment_type) || '' }}
+ COMMIT_HASH: ${{ (github.event.inputs.deployment_type == 'Release from Commit' && github.event.inputs.deployment_type) || '' }}
59
secrets:
60
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61
0 commit comments