Skip to content

Commit

Permalink
Quote API_URL in workflow (#46)
Browse files Browse the repository at this point in the history
It has special characters that might throw bash off.
  • Loading branch information
TimoWilken authored Mar 5, 2021
1 parent e67d362 commit 274f504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
run: |
echo ${{github.event.release.tag_name}} | grep -e 'v20[0-9][0-9][0-1][0-9][0-9][0-9]'
echo ${{secrets.JENKINS_BOT_PASS}} | kinit ${{secrets.PRINCIPAL}}
curl -X POST -k --negotiate -u : ${{secrets.API_URL}} -H 'Content-Type: application/x-www-form-urlencoded' -d 'DELPHESO2_TAG=${{github.event.release.tag_name}}'
curl -X POST -k --negotiate -u : '${{secrets.API_URL}}' -H 'Content-Type: application/x-www-form-urlencoded' -d 'DELPHESO2_TAG=${{github.event.release.tag_name}}'
klist
kdestroy

0 comments on commit 274f504

Please sign in to comment.