Skip to content

Set up GitHub Pages deployment #1

Set up GitHub Pages deployment

Set up GitHub Pages deployment #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build
- name: Deploy to GitHub Pages
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git checkout --orphan gh-pages
git --work-tree dist add --all
git --work-tree dist commit -m 'Deploy production version to GitHub Pages'
git push origin HEAD:gh-pages --force
rm -r dist
git checkout -f main