Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

改名

改名 #124

Workflow file for this run

name: build
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install
run: npm install
- name: build
run: npm run build
- name: .github.js
run: node .github.js
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: dist-ghpages
folder: dist-ghpages
single-commit: true
permissions:
contents: write