Skip to content

Commit a74c354

Browse files
authored
[INFRA] Fix custom action with no parameter (#79)
1 parent a095e88 commit a74c354

File tree

1 file changed

+1
-1
lines changed
  • .github/actions/notify-PA-repo-of-new-version

1 file changed

+1
-1
lines changed

.github/actions/notify-PA-repo-of-new-version/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
- name: Set CLIENT_PAYLOAD
2929
shell: bash
3030
run: |
31-
if [[ ${{ inputs.BUILD_DEMO_WORKFLOW_ID }} == '' && ${{ inputs.ARTIFACT_NAME }} == '' ]]; then
31+
if [[ "${{ inputs.BUILD_DEMO_WORKFLOW_ID }}" == '' && "${{ inputs.ARTIFACT_NAME }}" == '' ]]; then
3232
echo "CLIENT_PAYLOAD=$( jq -n -c \
3333
--arg v "${{ env.VERSION }}" \
3434
'{ version: $v }' )" >> $GITHUB_ENV

0 commit comments

Comments
 (0)