Skip to content

feat: standardize navigation links by adding data attributes for impr… #13

feat: standardize navigation links by adding data attributes for impr…

feat: standardize navigation links by adding data attributes for impr… #13

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches: [main]
paths:
- "index.html"
- "assets/**"
- "pages/**"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Stage static site
run: |
mkdir -p _site
cp index.html _site/
cp -r assets pages _site/
touch _site/.nojekyll
- uses: actions/upload-pages-artifact@v3
with:
path: _site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4