Skip to content

Bump postcss from 8.4.24 to 8.4.31 #107

Bump postcss from 8.4.24 to 8.4.31

Bump postcss from 8.4.24 to 8.4.31 #107

name: deploy-to-github-pages
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
env:
BASE_PATH: ${{ github.event.repository.name }}
DIST_FOLDER: docs/.vuepress/dist
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Build
run: |
npm install
BASE_PATH=${{ env.BASE_PATH }} npm run docs:build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ${{ env.DIST_FOLDER }}
single-commit: true