修复: typo #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |