ci-test (working now) #2
1 changed files with 14 additions and 7 deletions
|
@ -43,11 +43,18 @@ jobs:
|
|||
echo "---"
|
||||
tree builds
|
||||
- name: create release
|
||||
id: release
|
||||
uses: https://github.com/ncipollo/release-action@v1
|
||||
with:
|
||||
skipIfReleaseExists: false
|
||||
tag: ${{ steps.package-version.outputs.current-version}}
|
||||
token: ${{ secrets.RELEASE_TOKEN }}
|
||||
name: Test
|
||||
run: |
|
||||
curl -X 'POST' \
|
||||
'https://git.euph.dev/api/v1/repos/gamedev/snake/releases' \
|
||||
-H 'accept: application/json' \
|
||||
-H 'Content-Type: application/json' \
|
||||
-H 'Authorization: token ${{ secrets.RELEASE_TOKEN }}' \
|
||||
-d '{
|
||||
"body": "testA",
|
||||
"draft": true,
|
||||
"name": "testB",
|
||||
"prerelease": true,
|
||||
"tag_name": "testC",
|
||||
"target_commitish": "testD"
|
||||
}'
|
||||
|
||||
|
|
Loading…
Reference in a new issue