Skip to content

readme

readme #6

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- main # Change this if you're deploying from a different branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages # GitHub Pages will serve from this branch
publish_dir: ./ # Root directory of your repository