mirror of https://github.com/lhie1/Rules.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
726 B
YAML
29 lines
726 B
YAML
name: Auto Sync
|
|
on: push
|
|
jobs:
|
|
mirror_to_gitee:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v1
|
|
- name: 'Mirror to gitee'
|
|
uses: pixta-dev/repository-mirroring-action@v1
|
|
with:
|
|
target_repo_url:
|
|
${{ secrets.GITEE_URL }}
|
|
ssh_private_key:
|
|
${{ secrets.GITEE_KEY }}
|
|
|
|
mirror_to_gitlab:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v1
|
|
- name: 'Mirror to gitlab'
|
|
uses: pixta-dev/repository-mirroring-action@v1
|
|
with:
|
|
target_repo_url:
|
|
${{ secrets.GITLAB_URL }}
|
|
ssh_private_key:
|
|
${{ secrets.GITLAB_KEY }}
|