mirror of
https://gitee.com/TarsCloud/TarsCpp.git
synced 2025-01-03 05:22:26 +08:00
27 lines
609 B
YAML
27 lines
609 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- "*"
|
|
|
|
name: Sync to Gitee
|
|
jobs:
|
|
run:
|
|
name: Run
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v1
|
|
- name: Mirror Github to Gitee
|
|
uses: Yikun/hub-mirror-action@v1.2
|
|
with:
|
|
src: github/TarsCloud
|
|
dst: gitee/TarsCloud
|
|
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }}
|
|
dst_token: ${{ secrets.GITEE_TOKEN }}
|
|
account_type: org
|
|
timeout: 600
|
|
debug: true
|
|
force_update: true
|
|
static_list: "TarsCpp" |