From d692e9d2471da47ab0cf2d17a01841f7f22b99d0 Mon Sep 17 00:00:00 2001 From: benjaminjohnson2204 Date: Wed, 20 Nov 2024 12:38:25 -0800 Subject: [PATCH] Add GH actions workflow to deploy to Pages --- .github/workflows/build.yml | 27 +++++++++++++++++++++++++++ .nojekyll | 0 2 files changed, 27 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 .nojekyll diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..225d74e6 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 00000000..e69de29b