Update jekyll-gh-pages.yml #19
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
# 将静态内容部署到 GitHub Pages 的简易工作流程 | |
name: Deploy static content to Pages | |
on: | |
# 仅在推送到默认分支时运行。 | |
push: | |
branches: ['main'] | |
# 这个选项可以使你手动在 Action tab 页面触发工作流 | |
workflow_dispatch: | |
# 设置 GITHUB_TOKEN 的权限,以允许部署到 GitHub Pages。 | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# 允许一个并发的部署 | |
concurrency: | |
group: 'pages' | |
cancel-in-progress: true | |
jobs: | |
# 单次部署的工作描述 | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} # 明确指定 GITHUB_TOKEN | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Build | |
run: pnpm run build | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
#- name: Upload artifact | |
# uses: actions/upload-pages-artifact@v1 | |
# with: | |
# # Upload dist repository | |
# path: './dist' | |
#- name: Deploy to GitHub Pages | |
# id: deployment | |
# uses: actions/deploy-pages@v1 | |
# 部署 https://github.com/JamesIves/github-pages-deploy-action | |
#- name: Checkout repository | |
# uses: actions/checkout@v3 | |
# with: | |
# token: ${{ secrets.GITHUB_TOKEN }} # 明确指定 GITHUB_TOKEN | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
if: github.ref == 'refs/heads/main' | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages # default: gh-pages | |
folder: dist | |
clean: true # Automatically remove deleted files from the deploy branch | |
# commit-message: ${{ github.event.head_commit.message }} # default: `Deploying to gh-pages from @ 3238feb 🚀` | |
# commit-message: "deploy: ${{ github.sha }} (${{ github.event.head_commit.message }}) 🚀 " |