-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (47 loc) · 1.3 KB
/
sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Sync
on:
push:
workflow_dispatch:
jobs:
gitee:
name: Sync to Gitee
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure SSH Key
uses: khoazero123/[email protected]
with:
key: ${{ secrets.SSH_KEY }}
name: id_ed25519
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: Change Remote Repository
run: |
git remote remove origin
git remote add origin [email protected]:xuanxuan1231/cw-docs.git
git fetch
- name: Forced Push
run: |
git push -u origin main -f
gitlab:
name: Sync to Gitlab
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure SSH Key
uses: khoazero123/[email protected]
with:
key: ${{ secrets.SSH_KEY }}
name: id_ed25519
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: Change Remote Repository
run: |
git remote remove origin
git remote add origin [email protected]:xuanxuan1231/cw-docs.git
git fetch
- name: Forced Push
run: |
git push -u origin main -f