Add GH actions workflow to deploy to Pages #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: Build static website and push static files to gh-pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build static website and push static files to gh-pages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
- name: Build static website | |
run: | | |
npm ci | |
npm run build | |
- name: Push static files to gh-pages | |
run: | | |
cp -a .git out/ | |
cp .nojekyll out/ | |
cd out/ | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git checkout --orphan gh-pages | |
git add . | |
git commit -m "Deploy static website: $(TZ=UTC0 date +'%Y-%m-%dT%H:%M:%SZ')" | |
git push -uf origin gh-pages |