Skip to content

updated tags

updated tags #4

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Specify the Node.js version you are using
- name: Install dependencies
run: npm install
# NOTE: deploy script runs `pre-deploy` which is defined in package.json and builds the project
#- name: Build project
# run: npm run build
- name: Deploy to GitHub Pages
run: npm run deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}