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.
17 lines
442 B
17 lines
442 B
name: Sync to Gitee |
|
on: |
|
push: |
|
branches: |
|
- master |
|
jobs: |
|
sync: |
|
name: Sync to Gitee |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Sync to Gitee |
|
uses: wearerequired/git-mirror-action@master |
|
env: |
|
SSH_PRIVATE_KEY: ${{ secrets.GITEE_PRIVATE_KEY }} |
|
with: |
|
source-repo: "git@github.com:OhYee/bupt-scripts.git" |
|
destination-repo: "git@gitee.com:OhYee/bupt-scripts.git"
|
|
|