Skip to content

chore: 集成 renovate #131

chore: 集成 renovate

chore: 集成 renovate #131

Workflow file for this run

name: Deploy GitHub Pages And Sync to Gitee
# 触发条件:在 push 到 main 分支后
on:
push:
branches:
- main
paths-ignore: # 下列文件的变更不触发部署
- LICENSE
# 任务
jobs:
build-and-deploy:
runs-on: ubuntu-latest # 部署运行环境搭建
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Set USERNAME and REPO_NAME
run: |
echo "USERNAME=${{ github.actor }}" >> $GITHUB_ENV
echo "REPO_NAME=${{ github.repository }}" >> $GITHUB_ENV
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
run_install: true
- name: Build 🔧
run: |
pnpm run build
node -v
- name: 📲 Push To GitHub Pages
uses: ftnext/[email protected]
with:
build_dir: dist
github_token: ${{ secrets.DEPLOY_TOKEN }}
# - name: Sync to Gitee
# uses: wearerequired/git-mirror-action@master
# env:
# # 注意在 Settings->Secrets 配置 GITEE_RSA_PRIVATE_KEY(复制本机生成的 ~/.ssh/gitee )
# SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY }}
# with:
# # GitHub 源仓库地址
# source-repo: [email protected]:${{ env.REPO_NAME }}.git
# # Gitee 目标仓库地址
# destination-repo: [email protected]:${{ env.REPO_NAME }}.git
# 首次必须手动 Gitee 部署,否则会出错
# - name: Build Gitee Pages
# uses: yanglbme/gitee-pages-action@main
# with:
# # Gitee 用户名
# gitee-username: ${{ env.USERNAME }}
# # 在 Settings->Secrets 配置 GITEE_PSWD
# gitee-password: ${{ secrets.GITEE_PSWD }}
# # Gitee 仓库,仓库名严格区分大小写,请准确填写,否则会出错
# gitee-repo: ${{ env.REPO_NAME }}
# # 要部署的分支,默认是 master,若是其他分支,则需要指定(指定的分支必须存在)
# branch: gh-pages