Skip to content

moving header file to load locally #265

moving header file to load locally

moving header file to load locally #265

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "deploy"
cancel-in-progress: true
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
deploy:
name: Deploy Documentation
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: 🎛 Setup Pages
uses: actions/configure-pages@v3
- name: 🚀 Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1