Skip to content

Merge pull request #7 from andy108369/fix-links #6

Merge pull request #7 from andy108369/fix-links

Merge pull request #7 from andy108369/fix-links #6

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