add clean step.
Some checks failed
Deploy Docker Images / Docusaurus build and Server deploy (push) Failing after 16s

This commit is contained in:
amass 2024-06-30 23:38:22 +08:00
parent 8bccf894ab
commit 04d62e8bf2

View File

@ -7,6 +7,15 @@ jobs:
steps: steps:
- name: Check out dockerfiles. - name: Check out dockerfiles.
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Notify-Start
if: ${{ always() }}
run: |
echo "${{ github.repository }} 开始构建..." > notify.tpl
echo "构建地址: https://gitea.amass.fun/${{ github.repository }}/actions/runs/${{ github.run_number }}">> notify.tpl
echo "仓库地址: https://gitea.amass.fun/${{ github.repository }}">> notify.tpl
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: Get changed files - name: Get changed files
id: changed-dockerfiles id: changed-dockerfiles
uses: tj-actions/changed-files@v42 uses: tj-actions/changed-files@v42
@ -25,6 +34,8 @@ jobs:
echo "${file} changed." echo "${file} changed."
resources/build.sh build ${file} resources/build.sh build ${file}
done done
- name: Clean <none> Docker Image
run: docker images -f "dangling=true" -q | xargs docker rmi
- name: Notify-End - name: Notify-End
if: ${{ always() }} if: ${{ always() }}
run: | run: |