全量源镜像 #108
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: 全量源镜像 | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main" ] | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 0 * * MON' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
# Runs a single command using the runners shell | |
- name: 克隆仓库 | |
run: | | |
cd ${GITHUB_WORKSPACE} | |
sudo apt install git | |
cd all | |
chmod +x+u * | |
./start.sh | |
cd .. | |
git pull --no-edit --ff | |
- name: 提交更新 | |
# You may pin to the exact commit or the version. | |
# uses: actions-x/commit@803b20e5b72c0425eb7919c42c321e67c5bc5d2d | |
uses: actions-x/commit@v6 | |
with: | |
commit_message: "更新全量源" |