All checks were successful
Release Workflow / release (push) Successful in 4s
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
name: Release Workflow
|
|
on: [push]
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install zip
|
|
run: sudo apt-get install zip
|
|
|
|
- name: Run deploy script
|
|
run: bash deploy.sh
|
|
|
|
- name: Create Release
|
|
id: create_release
|
|
run: |
|
|
curl -X POST \
|
|
-H "Authorization: token ${{ secrets.JEBENI_TOKEN }}" \
|
|
-H "Accept: application/json" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{
|
|
"tag_name": "${{ github.ref_name }}",
|
|
"name": "${{ github.ref_name }}",
|
|
"draft": false,
|
|
"prerelease": false
|
|
}' \
|
|
http://srv-captain--git:3000/api/v1/repos/dave/wow-Heimdall/releases
|
|
|
|
- name: Upload Release Asset
|
|
run: |
|
|
RELEASE_ID=$(curl -s \
|
|
-H "Authorization: token ${{ secrets.JEBENI_TOKEN }}" \
|
|
http://srv-captain--git:3000/api/v1/repos/dave/wow-Heimdall/releases/tags/${{ github.ref_name }} | jq -r '.id')
|
|
|
|
curl -X POST \
|
|
-H "Authorization: token ${{ secrets.JEBENI_TOKEN }}" \
|
|
-H "Content-Type: application/zip" \
|
|
--data-binary @Heimdall.zip \
|
|
http://srv-captain--git:3000/api/v1/repos/dave/wow-Heimdall/releases/${RELEASE_ID}/assets
|