generate website from README. #1
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: Generate Website | |
run-name: generate website from README. | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'README.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- run: cp README.md website/content/_index.md | |
- run: "sed -i '1i ---\\ntemplate: index.html\\n---\\n' website/content/_index.md" | |
- name: build_and_deploy | |
uses: shalzz/[email protected] | |
env: | |
# Target branch | |
PAGES_BRANCH: gh-pages | |
# Provide personal access token | |
# TOKEN: ${{ secrets.TOKEN }} | |
# Or if publishing to the same repo, use the automatic token | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BUILD_DIR: './website' |