Skip to content

Hide unimplemented navbar buttons #14

Hide unimplemented navbar buttons

Hide unimplemented navbar buttons #14

Workflow file for this run

name: GitHub Pages Depoyment
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['22']
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-tags: true
- name: Set up Node ${{ matrix.node-version }}.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Check if package-lock.json is up to date
run: |
npx --yes package-lock-utd@1.1.0
- name: Build
run: |
npm ci
npm run build
- name: Upload artifact
id: upload-artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist/
# Deploy job
deploy:
# Add a dependency to the build job
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4