Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
yanqirj committed Mar 26, 2024
1 parent 26125ec commit ab1da18
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ permissions:
jobs:
deploy-gh-pages:
runs-on: ubuntu-latest

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -38,9 +48,11 @@ jobs:
run: |-
pnpm run build
- name: 部署文档
- name: 上传构建产物
uses: actions/upload-artifact@v4
with:
# 这是文档部署到的分支名称
# branch: gh-pages
path: "./dist"
path: dist

- name: 部署至GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion pages/posts/binfe-2020-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ duration: 25min
>
> Slides: [中文 ver.](https://antfu.me/talks/2020-09-26) | [English ver.](https://antfu.me/talks/2020-09-26/en)
Hello 大家好,非常感谢丁香园这次的邀请,也非常荣幸能够参与这次的分享。我是第一次做这样的分享,不足之处还请多多指教
Hello 大家好,非常感谢丁香园这次的邀请,也非常荣幸能够参与这次的分享。我是第一次做这样的分享不足之处还请多多指教

我这次分享的主题是 `import { reactive } from 'vue'`,和大家简单聊一聊 Vue 3 的响应式和组合式,以及他们的一些应用。

Expand Down

0 comments on commit ab1da18

Please sign in to comment.