Skip to content

Commit 274f504

Browse files
authored
Quote API_URL in workflow (#46)
It has special characters that might throw bash off.
1 parent e67d362 commit 274f504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
run: |
2323
echo ${{github.event.release.tag_name}} | grep -e 'v20[0-9][0-9][0-1][0-9][0-9][0-9]'
2424
echo ${{secrets.JENKINS_BOT_PASS}} | kinit ${{secrets.PRINCIPAL}}
25-
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}}'
25+
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}}'
2626
klist
2727
kdestroy

0 commit comments

Comments
 (0)