From 51a630f1b9c33c24f5ee747fb28829561d7b820b Mon Sep 17 00:00:00 2001 From: bin456789 Date: Thu, 14 Sep 2023 21:22:21 +0800 Subject: [PATCH] =?UTF-8?q?core:=20=E6=B7=BB=E5=8A=A0=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E5=88=B0=20Gitee?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/sync_to_gitee.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/sync_to_gitee.yaml diff --git a/.github/workflows/sync_to_gitee.yaml b/.github/workflows/sync_to_gitee.yaml new file mode 100644 index 0000000..acc5de0 --- /dev/null +++ b/.github/workflows/sync_to_gitee.yaml @@ -0,0 +1,15 @@ +name: 同步到 Gitee +on: [push, workflow_dispatch] +jobs: + sync: + runs-on: ubuntu-latest + steps: + - name: 同步到 Gitee + uses: Yikun/hub-mirror-action@master + with: + src: github/bin456789 + dst: gitee/bin456789 + static_list: "reinstall" + force_update: true + dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} + dst_token: ${{ secrets.GITEE_TOKEN }}