mirror of
https://gitee.com/log4j/pig-ui.git
synced 2024-12-22 21:22:33 +08:00
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: 同步代码
|
|
|
|
on:
|
|
push:
|
|
branches: [ master,dev ]
|
|
pull_request:
|
|
branches: [ master,dev ]
|
|
|
|
jobs:
|
|
gitcode:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: wearerequired/git-mirror-action@master #同步至 gitcode
|
|
env:
|
|
SSH_PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
|
|
with:
|
|
source-repo: "git@github.com:pig-mesh/pig-ui.git"
|
|
destination-repo: "git@gitcode.com:pig-mesh/pig-ui.git"
|
|
gitlink:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: wearerequired/git-mirror-action@master #同步至 gitlink
|
|
env:
|
|
SSH_PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
|
|
with:
|
|
source-repo: "git@github.com:pig-mesh/pig-ui.git"
|
|
destination-repo: "git@code.gitlink.org.cn:lengleng/pig-ui.git"
|
|
gitee:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: "centos:8"
|
|
steps:
|
|
- uses: wearerequired/git-mirror-action@master #同步至 gitee
|
|
env:
|
|
SSH_PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
|
|
with:
|
|
source-repo: "git@github.com:pig-mesh/pig-ui.git"
|
|
destination-repo: "git@gitee.com:log4j/pig-ui.git"
|