Update index.md #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and deploy to GitHub pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Publish site | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: build_and_deploy | |
uses: shalzz/[email protected] | |
env: | |
# Target branch | |
PAGES_BRANCH: gh-pages | |
# Provide personal access token | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} |