This commit is contained in:
parent
d94256ea3b
commit
44a5933e93
1 changed files with 7 additions and 1 deletions
|
@ -62,4 +62,10 @@ jobs:
|
||||||
\"prerelease\": true,
|
\"prerelease\": true,
|
||||||
\"tag_name\": \"$VERSION\"
|
\"tag_name\": \"$VERSION\"
|
||||||
}")
|
}")
|
||||||
echo $ID
|
echo "Uploading Build to Release"
|
||||||
|
curl -X 'POST' \
|
||||||
|
"https://git.euph.dev/api/v1/repos/${{ github.repository }}/releases/$ID/assets?name=test" \
|
||||||
|
-H 'accept: application/json' \
|
||||||
|
-H 'Content-Type: multipart/form-data' \
|
||||||
|
-H 'Authorization: token ${{ secrets.RELEASE_TOKEN }}' \
|
||||||
|
-F 'attachment=@./builds/linux.tar.gz;type=application/gzip'
|
||||||
|
|
Loading…
Reference in a new issue