diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..c37ee573 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: check if site is buildable + +on: + push: + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1.0.9 + with: + source: ./ + destination: ./_site