Update lib.ts 更新复制结果提示信息 #10
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 to Github Pages | |
on: | |
# 在main分支发生改变时运行。 | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
# 这个选项可以使你手动在 Action tab 页面触发工作流 | |
workflow_dispatch: | |
jobs: | |
# 部署 | |
deploy: | |
# 运行环境 | |
runs-on: ubuntu-latest | |
# 权限 | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# 环境变量 | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
# 步骤 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install | |
- name: Build Vue 3 Project | |
run: npm run build | |
- name: Configure GitHub Pages | |
uses: actions/[email protected] | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
path: './dist' | |
- name: Deploy to Github Pages | |
id: deployment | |
uses: actions/[email protected] |