更新 高级语言程序设计
/新建 体育理论考试
#3
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 to GitHub Pages | |
on: | |
push: | |
branches: [ master ] | |
# 允许你在 GitHub 上的 Actions 标签中手动触发此“工作流程” | |
workflow_dispatch: | |
# 允许 job 克隆 repo 并创建一个 page deployment | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v3 | |
- name: Install, build, and upload your site | |
uses: withastro/action@v1 | |
# with: | |
# path: . # 存储库中 Astro 项目的根位置。(可选) | |
# node-version: 18 # 用于构建站点的特定 Node.js 版本,默认为 18。(可选) | |
# package-manager: pnpm@latest # 应使用哪个 Node.js 包管理器来安装依赖项和构建站点。会根据存储库中的 lockfile 自动检测。(可选) | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |