test env.
Some checks failed
Deploy Applications / Build (push) Failing after 5s

This commit is contained in:
amass 2024-06-30 17:20:24 +08:00
parent 4d7fa671bc
commit 87e20d9594
2 changed files with 11 additions and 6 deletions

View File

@ -14,6 +14,11 @@ jobs:
- name: Send success notification
if: ${{ always() }}
run: |
AMASS_REPO_NAME=${{ github.repository }}
AMASS_BUILD_STATUS=${{ job.status }}
AMASS_COMMIT=${{ github.sha }}
AMASS_COMMIT_MESSAGE=${{ github.event.head_commit.message }}
AMASS_REPO_LINK=https://gitea.amass.fun/${{ github.repository }}
echo build ${{ github.repository }} finished.
cat resources/notify.tpl | envsubst | jq -sR .
cat resources/notify.tpl | envsubst | jq -sR . | xargs -0 -I {} curl -H "Content-Type: application/json" -X POST -d '{"type":"text","msg":{} }' https://amass.fun/notify

View File

@ -1,6 +1,6 @@
repo: ${{ github.repository }}
status: ${{ job.status }}
commit: ${{ github.sha }}
message: ${{ github.event.head_commit.message }}
build link: $DRONE_BUILD_LINK
repo link: https://gitea.amass.fun/${{ github.repository }}
repo: $AMASS_REPO_NAME
status: $AMASS_BUILD_STATUS
commit: $AMASS_COMMIT
message: $AMASS_COMMIT_MESSAGE
build link: $AMASS_BUILD_LINK
repo link: $AMASS_REPO_LINK