chore: release 0.1.4 #21
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
# 部署Blog | |
name: Deploy static content to Pages | |
on: | |
# 推送到默认分支时运行。 | |
push: | |
branches: ["master"] | |
# 运行工作流的请求有 pull_request 和 workflow_dispatch 事件类型 | |
pull_request: | |
types: [opened, synchronize] | |
# 这个选项可以使你手动在 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 | |
# if: contains(github.event.head_commit.message, 'build') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "latest" | |
- name: Install pnpm | |
run: npm install -g [email protected] | |
- name: Install dependencies | |
run: pnpm install --no-frozen-lockfile | |
- 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: "./packages/docs/.vitepress/dist" | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |