mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
434 B
16 lines
434 B
name: sync2gitee
|
|
on: [push]
|
|
|
|
jobs:
|
|
repo-sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Mirror the Github organization repos to Gitee.
|
|
uses: Yikun/hub-mirror-action@master
|
|
with:
|
|
src: 'github/midoks'
|
|
dst: 'gitee/midoks'
|
|
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }}
|
|
dst_token: ${{ secrets.GITEE_TOKEN }}
|
|
static_list: "mdserver-web"
|
|
force_update: true |