From aaf62bd26ea8ee3e002d32a7dd11d1e98a388dfa Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 20 Sep 2022 17:10:15 -0500 Subject: [PATCH] Implement GitHub Actions for external plugin support --- .github/workflows/gh-pages.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..543bbd0 --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,21 @@ +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: actions/cache@v2 + with: + path: vendor/bundle + key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} + restore-keys: | + ${{ runner.os }}-gems- + - uses: helaili/jekyll-action@2.0.5 + with: + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file