Skip to content

chore: update section headings and emojis for consistency in Copilot … #10

chore: update section headings and emojis for consistency in Copilot …

chore: update section headings and emojis for consistency in Copilot … #10

Workflow file for this run

name: Deploy site to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./site
publish_branch: gh-pages
keep_files: false
github_token: ${{ secrets.GITHUB_TOKEN }}