name: Deploy Docker Images run-name: build and deploy docker image to server. on: [push] jobs: Docusaurus build and Server deploy: runs-on: ubuntu-latest steps: - name: Check out dockerfiles. uses: actions/checkout@v4 - name: Get changed files id: changed-dockerfiles uses: tj-actions/changed-files@v42 with: files: | **.dockerfile - name: Log in to Docker Registry uses: docker/login-action@v2 with: registry: frp-by1.wwvvww.cn:45288 username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Build docker image and deploy. run: | for file in ${{ steps.changed-dockerfiles.outputs.all_changed_files }}; do echo "${file} changed." resources/build.sh build ${file} done - name: Notify-End if: ${{ always() }} run: | echo "${{ github.repository }} 构建结束" > notify.tpl echo "构建状态: ${{ job.status }}">> 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