自动同步代码到 Gitee #1021
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
name: 自动同步代码到 Gitee | |
on: | |
push: | |
branches: | |
- main | |
- dev-renpy7.4.6 | |
- dev-renpy8.0.0 | |
schedule: | |
- cron: '0 20 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source codes | |
uses: actions/checkout@v1 | |
- name: 自动同步代码到 Gitee | |
uses: Yikun/hub-mirror-action@master | |
with: | |
src: github/luckykeeper | |
dst: gitee/luckykeeper | |
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} | |
dst_token: ${{ secrets.GITEE_TOKEN }} | |
white_list: "LOVE69_renpy_remaster, attackMap, HBFUDataFill_new" | |
static_list: "LOVE69_renpy_remaster, attackMap, HBFUDataFill_new" | |
cache_path: /github/workspace/hub-mirror-cache | |
debug: true | |
force_update: true |