Skip to content

Removed temporarily commented out elements #17

Removed temporarily commented out elements

Removed temporarily commented out elements #17

name: Deploy to github pages
on:
push:
branches:
- main
jobs:
gh-pages-deploy:
name: Deploying to gh-pages
runs-on: ubuntu-latest
steps:
- name: Setup Node.js for use with actions
uses: actions/setup-node@v3
with:
version: 12.x
- name: Checkout branch
uses: actions/checkout@v3
- name: Clean install dependencies
run: npm ci
- name: Run deploy script
run: |
git config user.name "Eddie" && git config user.email "empburke@outlook.com"
npm run gh-pages-deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}