„.gitea/workflows/build.yml“ ändern
All checks were successful
Export Game Job

This commit is contained in:
Snoweuph 2023-04-05 13:34:30 +00:00
parent 9f5f7a2a21
commit ad728d4169

View file

@ -46,12 +46,14 @@ jobs:
echo echo
- name: create release - name: create release
run: | run: |
echo "Getting last Release Tag"
VERSION=$(curl -X 'GET' 'https://git.euph.dev/api/v1/repos/${{ github.repository }}/releases?page=1&limit=1' -H 'accept: application/json') VERSION=$(curl -X 'GET' 'https://git.euph.dev/api/v1/repos/${{ github.repository }}/releases?page=1&limit=1' -H 'accept: application/json')
VERSION=$(echo $VERSION | jq -r '.[0].tag_name' | awk -F. -v OFS=. '{$NF += 1 ; print}') VERSION=$(echo $VERSION | jq -r '.[0].tag_name' | awk -F. -v OFS=. '{$NF += 1 ; print}')
echo "Generate new Release"
curl -X 'POST' \ curl -X 'POST' \
'https://git.euph.dev/api/v1/repos/${{ github.repository }}/releases' \ 'https://git.euph.dev/api/v1/repos/${{ github.repository }}/releases' \
-H 'accept: application/json' \ -H 'accept: application/json' \
-H 'Content-Type: application/json' \ -H 'Content-Type: application/json' \
-H 'Authorization: token ${{ secrets.RELEASE_TOKEN }}' \ -H 'Authorization: token ${{ secrets.RELEASE_TOKEN }}' \
-d '{"body": "Automated Build","draft": true,"name": "Automated Release $VERSION","prerelease": true,"tag_name": "$VERSION",}' -d '{"body": "Automated Build","draft": true,"name": "Automated Release ABC","prerelease": true,"tag_name": "CBA",}'
echo "Uploading Build to new Release"