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

This commit is contained in:
amass 2024-06-30 17:40:20 +08:00
parent 2f19d74ced
commit 94ba0a2366
2 changed files with 12 additions and 7 deletions

View File

@ -14,6 +14,11 @@ jobs:
- name: Send success notification - name: Send success notification
if: ${{ always() }} if: ${{ always() }}
run: | run: |
echo "GITEA_ACTOR=${{ github.actor }}" >> $GITHUB_ENV
echo "GITEA_REPO_NAME=${{ github.repository }}" >> $GITHUB_ENV
echo "GITEA_BUILD_STATUS=${{ job.status }}" >> $GITHUB_ENV
echo "GITEA_COMMIT=${{ github.sha }}" >> $GITHUB_ENV
echo "GITEA_COMMIT_MESSAGE=${{ github.event.head_commit.message }}" >> $GITHUB_ENV
echo build ${{ github.repository }} finished. echo build ${{ github.repository }} finished.
echo "repo: ${{ github.repository }}\nstatus: ${{ job.status }}" | envsubst | jq -sR . 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 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: $AMASS_REPO_NAME repo: $GITEA_REPO_NAME
status: $AMASS_BUILD_STATUS status: $GITEA_BUILD_STATUS
commit: $AMASS_COMMIT commit: $GITEA_COMMIT
message: $AMASS_COMMIT_MESSAGE message: $GITEA_COMMIT_MESSAGE
build link: $AMASS_BUILD_LINK build link: $GITEA_BUILD_LINK
repo link: $AMASS_REPO_LINK repo link: $GITEA_REPO_LINK