From 6e84793b87db252bfa71309905eb4e25c5513b68 Mon Sep 17 00:00:00 2001 From: Andrew Banchich <13824577+andrewbanchich@users.noreply.github.com> Date: Wed, 23 Dec 2020 19:03:16 -0500 Subject: [PATCH] Use GitHub Actions (#117) --- .github/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..216be22 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,14 @@ +name: Build & Release + +on: + push: + branches: [ master ] + +jobs: + github-pages: + runs-on: ubuntu-16.04 + steps: + - uses: actions/checkout@v2 + - uses: helaili/jekyll-action@2.0.1 + env: + JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }}