diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..49beaa1 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build the website + +on: + pull_request: + +jobs: + build-website: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Build + uses: actions/jekyll-build-pages@v1 + with: + destination: "./built-website" + - name: Upload artifact + uses: actions/upload-pages-artifact@v4 + with: + path: "./built-website" \ No newline at end of file