fix(自定义个性语句): 解决部分字母冲突问题 #31
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 Repo To GitLab | |
on: | |
push: | |
branches: | |
- main | |
env: | |
SSH_KEY: ${{ secrets.GITLAB_DEPLOY_KEY }} # 服务器私钥 | |
DEPLOY_REPO: ${{ secrets.GITLAB_DEPLOY_REPO }} # 服务器部署仓库地址 | |
jobs: | |
git-mirror: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'Mintimate' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: yesolutions/mirror-action@master | |
with: | |
REMOTE: ${{ env.DEPLOY_REPO }} | |
GIT_SSH_PRIVATE_KEY: ${{ env.SSH_KEY }} | |
GIT_SSH_NO_VERIFY_HOST: "true" |