Skip to content

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- dev
- webpage
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Switch to the webpage branch and pull latest changes from main
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git checkout webpage
git fetch origin/dev
git merge dev
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies and build
run: |
npm install
npm run build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1