Skip to content

js tips, 2023-10-26 11:42:02 #24

js tips, 2023-10-26 11:42:02

js tips, 2023-10-26 11:42:02 #24

name: Deploy GitHub Page
on:
push:
branches:
- main
jobs:
docs-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install dependencies
run: yarn
- name: Build vue site
run: export NODE_OPTIONS=--max_old_space_size=4096&&yarn build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: gh-pages
FOLDER: dist
single-commit: true