Skip to content

Merge pull request #6 from andy108369/update-faq-3 #5

Merge pull request #6 from andy108369/update-faq-3

Merge pull request #6 from andy108369/update-faq-3 #5

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main # Set a branch to trigger deployment
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install and Build 🔧
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # Deploy to GitHub Pages
folder: dist # The folder the action should deploy
clean: true # Automatically remove deleted files from the deploy branch