Skip to content

修复: dead link

修复: dead link #25

Workflow file for this run

name: 同步
on:
push:
workflow_dispatch:
jobs:
gitee:
name: 同步到 Gitee
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Unshallow
run: |
git fetch --unshallow
- name: 配置 SSH 密钥
uses: khoazero123/[email protected]
with:
key: ${{ secrets.SSH_KEY }}
name: id_ed25519
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: 更改远程
run: |
git remote remove origin
git remote add origin [email protected]:xuanxuan1231/cw-docs.git
git fetch
- name: 强制推送
run: |
git push -u origin main -f
gitlab:
name: 同步到 Gitlab
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Unshallow
run: |
git fetch --unshallow
- name: 配置 SSH 密钥
uses: khoazero123/[email protected]
with:
key: ${{ secrets.SSH_KEY }}
name: id_ed25519
known_hosts: ${{ secrets.KNOWN_HOSTS }}
- name: 更改远程
run: |
git remote remove origin
git remote add origin [email protected]:xuanxuan1231/cw-docs.git
git fetch
- name: 强制推送
run: |
git push -u origin main -f