Skip to content

Commit

Permalink
Add GH actions workflow to deploy to Pages
Browse files Browse the repository at this point in the history
benjaminJohnson2204 committed Nov 20, 2024
1 parent ae55b5f commit d692e9d
Showing 2 changed files with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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
Empty file added .nojekyll
Empty file.

0 comments on commit d692e9d

Please sign in to comment.