Skip to content

Commit

Permalink
[INFRA] Fix custom action with no parameter (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
csouchet authored May 2, 2022
1 parent a095e88 commit a74c354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/notify-PA-repo-of-new-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
- name: Set CLIENT_PAYLOAD
shell: bash
run: |
if [[ ${{ inputs.BUILD_DEMO_WORKFLOW_ID }} == '' && ${{ inputs.ARTIFACT_NAME }} == '' ]]; then
if [[ "${{ inputs.BUILD_DEMO_WORKFLOW_ID }}" == '' && "${{ inputs.ARTIFACT_NAME }}" == '' ]]; then
echo "CLIENT_PAYLOAD=$( jq -n -c \
--arg v "${{ env.VERSION }}" \
'{ version: $v }' )" >> $GITHUB_ENV
Expand Down

0 comments on commit a74c354

Please sign in to comment.