From 2c76d2d5c94ef1cc0ed554f7c22d62433699cc40 Mon Sep 17 00:00:00 2001 From: Tom Date: Mon, 13 Jan 2025 09:56:36 +0000 Subject: [PATCH] bump versions --- .github/workflows/jekyll.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 3743ec2..b3c99d0 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -39,23 +39,28 @@ jobs: ruby-version: '3.1' # Not needed with a .ruby-version file bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 0 # Increment this number if you need to re-download cached gems + - name: Setup Pages id: pages uses: actions/configure-pages@v3 + - name: Setup Node uses: actions/setup-node@v3 with: node-version: 18 + - name: Install NPM packages run: npm clean-install + - name: Build with Jekyll # Outputs to the './_site' directory by default run: bundle exec jekyll build --trace --baseurl "${{ steps.pages.outputs.base_path }}" env: JEKYLL_ENV: production + - name: Upload artifact # Automatically uploads an artifact from the './_site' directory by default - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 # Deployment job deploy: @@ -67,4 +72,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4