From 1d47a777c4faa54ac67e41de4b42c164f52cf8bc Mon Sep 17 00:00:00 2001 From: BradHacker Date: Fri, 23 Feb 2024 15:53:31 -0500 Subject: [PATCH] Add Jekyll build GH action --- .github/workflows/build-site.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build-site.yml diff --git a/.github/workflows/build-site.yml b/.github/workflows/build-site.yml new file mode 100644 index 0000000..499fe25 --- /dev/null +++ b/.github/workflows/build-site.yml @@ -0,0 +1,17 @@ +name: Build Jekyll site +on: + pull_request: + branches: + - master +permissions: + contents: read +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Build + uses: actions/jekyll-build-pages@v1