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