Add send Gotify
All checks were successful
Test code / Test-code (push) Successful in 23s
Upload to s3 / Upload-to-s3 (push) Successful in 2m7s

This commit is contained in:
stirelshka8 2024-07-20 15:41:10 +03:00
parent aaf54b2e34
commit 2fed01defa

View File

@ -38,4 +38,12 @@ jobs:
echo "$TAG" > versionagent.txt
aws --endpoint-url=http://${{ secrets.AWS_HOST }} s3 cp ./versionagent.txt s3://doc
- name: Send message to Gotify
run: |
TAG="${{ github.ref }}"
TAG="${TAG#refs/tags/}"
TAG="${TAG#v}"
curl -X POST "https://push.adminlabs.space/message?token=${{ secrets.GOTIFY_TOKEN }}" -F "title=New version $TAG" -F "message=Create new version install_agent.sh $TAG" -F "priority=8"