Skip to content

Commit

Permalink
[CI] Add missing closing double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasLauermann committed Apr 17, 2023
1 parent f06ce9f commit f8106d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ publish:github-release:
response=$(curl -L -f
-X POST
-H "Accept: application/vnd.github+json"
-H "Authorization: Bearer $inst_acc_token
-H "Authorization: Bearer $inst_acc_token"
-H "X-GitHub-Api-Version: 2022-11-28"
"https://api.github.com/repos/mutable-org/mutable/releases"
-d '{"tag_name":"${TAG}","target_commitish":"main"}')
Expand All @@ -586,7 +586,7 @@ publish:github-release:
curl -L -f
-X POST
-H "Accept: application/vnd.github+json"
-H "Authorization: Bearer $inst_acc_token
-H "Authorization: Bearer $inst_acc_token"
-H "X-GitHub-Api-Version: 2022-11-28"
-H "Content-Type: application/octet-stream"
"${upload_url}?name=mutable-linux-amd64-${TAG}.zip"
Expand All @@ -596,7 +596,7 @@ publish:github-release:
curl -L -f
-X POST
-H "Accept: application/vnd.github+json"
-H "Authorization: Bearer $inst_acc_token
-H "Authorization: Bearer $inst_acc_token"
-H "X-GitHub-Api-Version: 2022-11-28"
-H "Content-Type: application/octet-stream"
"${upload_url}?name=mutable-macos-amd64-${TAG}.zip"
Expand Down

0 comments on commit f8106d7

Please sign in to comment.