Skip to content

Update Navbar.jsx

Update Navbar.jsx #16

Workflow file for this run

name: Build and Publish Web Site
on:
push:
branches:
- master
- main
jobs:
build:
name: Build and Push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Redirect 404 to Index for SPA
run: cp dist/index.html dist/404.html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: seniorblockchain.io