Skip to content

fix: InputService输入问题 && 登录过期拦截问题 #100

fix: InputService输入问题 && 登录过期拦截问题

fix: InputService输入问题 && 登录过期拦截问题 #100

Workflow file for this run

name: gh-pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Git
uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: latest
cache: npm # 因为cache依赖package.json 所以需要先checkout
- name: Npm Install
run: npm install
- name: Npm Build
run: npm run build
- name: Upload Pages
uses: actions/upload-pages-artifact@v3
with:
path: ./dist # 部署编译后的文件
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@v4