2024-03-08 12:21:39 +08:00
|
|
|
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
|
2024-03-08 12:25:03 +08:00
|
|
|
uses: tj-actions/changed-files@v42
|
2024-03-08 12:21:39 +08:00
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
**.dockerfile
|
2024-06-30 23:24:49 +08:00
|
|
|
- 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 }}
|
2024-03-08 12:21:39 +08:00
|
|
|
- name: Build docker image and deploy.
|
|
|
|
run: |
|
|
|
|
for file in ${{ steps.changed-dockerfiles.outputs.all_changed_files }}; do
|
|
|
|
echo "${file} changed."
|
2024-06-30 22:33:23 +08:00
|
|
|
resources/build.sh build ${file}
|
2024-03-08 12:21:39 +08:00
|
|
|
done
|
2024-06-30 22:33:23 +08:00
|
|
|
- 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
|