添加百度统计代码 #30
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: deploy-example-site | |
on: | |
push: | |
branches: [example] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# “最近更新时间” 等 git 日志相关信息,需要拉取全部提交记录 | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
# 选择要使用的 node 版本 | |
node-version: 20 | |
# registry-url: https://registry.npmmirror.com/ | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install antfu/ni | |
run: npm i -g @antfu/ni | |
- name: Install dependencies | |
run: ni --frozen | |
# 运行构建脚本 | |
- name: Build | |
env: | |
NODE_OPTIONS: --max-old-space-size=8192 | |
run: nr build:example | |
- name: deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
deploy_key: ${{ secrets.PUSH_TO_ANOTHER_REPO_SSH_DEPLOY_KEY }} | |
external_repository: fantastic-mobile/basic-example | |
publish_branch: main | |
publish_dir: ./dist-example | |
enable_jekyll: true | |
force_orphan: true | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' | |
# sync: | |
# runs-on: ubuntu-latest | |
# needs: deploy | |
# 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: git@github.com:fantastic-admin/pro-example.git | |
# # 注意替换为你的 Gitee 目标仓库地址 | |
# destination-repo: git@gitee.com:fantastic-admin/pro-example.git | |
# - name: Build Gitee Pages | |
# uses: yanglbme/gitee-pages-action@main | |
# with: | |
# # 注意替换为你的 Gitee 用户名 | |
# gitee-username: hooray | |
# # 注意在 Settings->Secrets 配置 GITEE_PASSWORD | |
# gitee-password: ${{ secrets.GITEE_PASSWORD }} | |
# # 注意替换为你的 Gitee 仓库,仓库名严格区分大小写,请准确填写,否则会出错 | |
# gitee-repo: fantastic-admin/pro-example | |
# # 要部署的分支,默认是 master,若是其他分支,则需要指定(指定的分支必须存在) | |
# branch: main |