From 05ce818e7d87c3196e9f1df7f806dcc86d9a15fd Mon Sep 17 00:00:00 2001 From: amass <168062547@qq.com> Date: Sun, 30 Jun 2024 23:26:14 +0800 Subject: [PATCH] change notify order. --- .gitea/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 13ea913..4543a4a 100755 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -18,6 +18,8 @@ jobs: container: image: frp-by1.wwvvww.cn:45288/ubuntu_dev:22.04 steps: + - name: Check out source. + uses: actions/checkout@v4 - name: Notify-Start if: ${{ always() }} run: | @@ -27,8 +29,6 @@ jobs: echo "提交ID: $(git rev-parse --short HEAD)">> notify.tpl echo -n "提交消息: ${{ github.event.head_commit.message }}">> notify.tpl cat notify.tpl | envsubst | jq -sR . | xargs -0 -I {} curl -H "Content-Type: application/json" -X POST -d '{"type":"text","msg":{} }' https://amass.fun/notify - - name: Check out source. - uses: actions/checkout@v4 - run: resource/build.sh build - name: Notify-End if: ${{ always() }}