Update docker.yml #2
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: GitHub Actions Build and Deploy | |
# 触发条件 | |
on: | |
[push] | |
# 设置权限 | |
permissions: | |
contents: write | |
# 设置上海时区 | |
env: | |
TZ: Asia/Shanghai | |
# 任务 | |
jobs: | |
build-and-deploy: | |
# 服务器环境:最新版 ubuntu | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
# 拉取代码 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# 设置 node 版本 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# 打包静态文件 | |
- name: Build | |
env: | |
APP_BASE_PATH: /${{ github.repository }} | |
run: npm install && npm run build_node | |
# 部署 | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
# GitHub Pages 读取的分支 | |
branch: gh-pages | |
# 静态文件所在目录 | |
folder: dist |