Skip to content

Commit

Permalink
feat: 添加 workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
uyoufu committed Sep 16, 2023
1 parent d8af13d commit c2f6d33
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflow/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Sync

on:
push:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
steps:
# - name: Sync to Gitee
# uses: wearerequired/git-mirror-action@master
# env:
# # 注意在 Settings->Secrets 配置 GITEE_RSA_PRIVATE_KEY
# SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY }}
# with:
# # 注意替换为你的 GitHub 源仓库地址
# source-repo: "[email protected]:GalensGan/galensgan.github.io.git"
# # 注意替换为你的 Gitee 目标仓库地址
# destination-repo: "https://gitee.com/galensgan/galensgan"

- name: Build Gitee Pages
uses: yanglbme/gitee-pages-action@master
with:
# 注意替换为你的 Gitee 用户名
gitee-username: galensgan
# 注意在 Settings->Secrets 配置 GITEE_PASSWORD
gitee-password: ${{ secrets.GITEE_PASSWORD }}
# 注意替换为你的 Gitee 仓库
gitee-repo: doocs/advanced-java

0 comments on commit c2f6d33

Please sign in to comment.