Skip to content

use dev instead of main #3

use dev instead of main

use dev instead of main #3

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 checkout webpage
git pull origin 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