mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
18 lines
377 B
YAML
18 lines
377 B
YAML
|
name: Sync
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Sync to Gitee
|
||
|
uses: wearerequired/git-mirror-action@master
|
||
|
env:
|
||
|
SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY }}
|
||
|
with:
|
||
|
source-repo: "git@github.com:doocs/md.git"
|
||
|
destination-repo: "git@gitee.com:Doocs/md.git"
|