2024-05-19 10:41:22 -04:00
|
|
|
name: Build and Push Docker Image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2024-05-20 02:18:40 -04:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *' # 每天的 0 点执行
|
2024-05-19 10:41:22 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-10-12 19:38:34 -04:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
repository: ${{secrets.REPOSITORY}}
|
|
|
|
submodules: true
|
|
|
|
show-progress: true
|
|
|
|
|
|
|
|
- name: Modify
|
|
|
|
run : |
|
|
|
|
sh copy.sh
|
|
|
|
|
2024-05-19 10:41:22 -04:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
|
|
|
- name: Log in to Docker Hub
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Build and push Docker image
|
|
|
|
run: ./build.sh
|