From 4d8cc97d2406f4233f1d14956697b38b6b3f33c3 Mon Sep 17 00:00:00 2001 From: Andrew Banchich <13824577+andrewbanchich@users.noreply.github.com> Date: Fri, 26 Mar 2021 20:51:14 -0400 Subject: [PATCH] Use GitHub Actions --- .github/workflows/github-pages.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/github-pages.yml diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml new file mode 100644 index 0000000..2a738b1 --- /dev/null +++ b/.github/workflows/github-pages.yml @@ -0,0 +1,15 @@ +name: Build and deploy Jekyll site to GitHub Pages + +on: + push: + branches: + - master + +jobs: + github-pages: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: helaili/jekyll-action@2.0.5 + env: + JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }}