Dockerfiles/.gitea/workflows/deploy.yaml
amass e2b777404d
Some checks failed
Deploy Docker Images / Docusaurus build and Server deploy (push) Failing after 5s
add build file.
2024-06-30 22:33:23 +08:00

32 lines
1.4 KiB
YAML

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: 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