From 81dd56dab087337a2d53ba49e1f7b6e22711a06c Mon Sep 17 00:00:00 2001 From: Wil Thieme Date: Tue, 27 Feb 2024 16:42:21 -0500 Subject: [PATCH] add feed cache --- .github/workflows/jekyll.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 4bf8cbf..8c8fde6 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -31,6 +31,12 @@ jobs: - name: Install Dependencies run: bundler install + - name: Configure Feed Cache + uses: actions/cache@v4 + with: + path: planet.db + key: cache-feed-sources-${{ hashFiles('Gemfile.lock') }} + - name: Get Feed Content run: bundler exec rake @@ -39,7 +45,7 @@ jobs: - name: Build Jekyll Site run: bundler exec jekyll build - + - uses: actions/upload-pages-artifact@v3 deploy: