Skip to content

Commit

Permalink
Add missing quotes (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelirh authored May 1, 2024
1 parent 69b7e1d commit 4f8c03f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
"target_branch": "${{ env.RC_BRANCH_NAME }}",
"version": "${{ github.event.inputs.version }}",
"release_name": "${{ github.event.inputs.release_name }}",
"automatic_mode": ${{ github.event.inputs.automatic_mode }},
"prerelease": ${{ github.event.inputs.prerelease }}
"automatic_mode": "${{ github.event.inputs.automatic_mode }}",
"prerelease": "${{ github.event.inputs.prerelease }}"
}
release_panther_ros:
Expand All @@ -69,8 +69,8 @@ jobs:
"target_branch": "${{ env.RC_BRANCH_NAME }}",
"version": "${{ github.event.inputs.version }}",
"release_name": "${{ github.event.inputs.release_name }}",
"automatic_mode": ${{ github.event.inputs.automatic_mode }},
"prerelease": ${{ github.event.inputs.prerelease }}
"automatic_mode": "${{ github.event.inputs.automatic_mode }}",
"prerelease": "${{ github.event.inputs.prerelease }}"
}
release_panther_docker:
Expand All @@ -94,8 +94,8 @@ jobs:
"version": "${{ github.event.inputs.version }}",
"date": "${{ github.event.inputs.date }}",
"release_name": "${{ github.event.inputs.release_name }}",
"automatic_mode": ${{ github.event.inputs.automatic_mode }},
"prerelease": ${{ github.event.inputs.prerelease }}
"automatic_mode": "${{ github.event.inputs.automatic_mode }}",
"prerelease": "${{ github.event.inputs.prerelease }}"
}
build_and_push_docker_images:
Expand Down Expand Up @@ -143,8 +143,8 @@ jobs:
"target_branch": "${{ env.RC_BRANCH_NAME }}",
"version": "${{ github.event.inputs.version }}",
"release_name": "${{ github.event.inputs.release_name }}",
"automatic_mode": ${{ github.event.inputs.automatic_mode }},
"prerelease": ${{ github.event.inputs.prerelease }}
"automatic_mode": "${{ github.event.inputs.automatic_mode }}",
"prerelease": "${{ github.event.inputs.prerelease }}"
}
build_and_publish_rpi_image:
Expand Down

0 comments on commit 4f8c03f

Please sign in to comment.