fix the way the data is uploaded
This commit is contained in:
parent
fb49d19451
commit
fd10cb473a
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ steps:
|
|||
commands:
|
||||
- apk add jq curl
|
||||
- |
|
||||
echo '{ "assignee": "DarkKirb", "base": "main", "head": "update-packages", "title": "Update packages" }' | jq '.body = $body' --arg body "$(cat ../pr-message.txt)" | curl -XPOST 'https://git.chir.rs/api/v1/repos/DarkKirb/nix-packages/pulls' -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Bearer $AUTHORISATION" -d-
|
||||
echo '{ "assignee": "DarkKirb", "base": "main", "head": "update-packages", "title": "Update packages" }' | jq '.body = $body' --arg body "$(cat ../pr-message.txt)" | curl -XPOST 'https://git.chir.rs/api/v1/repos/DarkKirb/nix-packages/pulls' -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Bearer $AUTHORISATION" --data-binary @-
|
||||
environment:
|
||||
AUTHORISATION:
|
||||
from_secret: GITEA_KEY
|
||||
|
|
Reference in a new issue