From 26fac2b5680cc28b0fcc87d7b696d67af770597c Mon Sep 17 00:00:00 2001 From: Ash Furrow Date: Thu, 10 Oct 2024 21:30:16 -0300 Subject: [PATCH] Adds GitHub Actions deploy. --- .github/workflows/gh-pages.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..2f945d1 --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,17 @@ +name: Middleman + +on: + push: + branches: [master] + +jobs: + build_and_deploy: + name: Build & Deploy + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Build & Deploy to GitHub Pages + with: + REMOTE_BRANCH: gh-pages + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: yurikoval/middleman-gh-pages-action@master