From b5c53de8f04520b8807baca28830ceb908641dd7 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Thu, 7 Oct 2021 22:53:32 +0530 Subject: [PATCH] Profile with multiple Jekyll versions --- .github/workflows/third-party.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/third-party.yml b/.github/workflows/third-party.yml index 0348108..1a67494 100644 --- a/.github/workflows/third-party.yml +++ b/.github/workflows/third-party.yml @@ -9,19 +9,22 @@ on: - master jobs: build_n_profile: - if: "!contains(github.event.commits[0].message, '[ci skip]')" - name: "Third-Party Repo Profile (Ruby ${{ matrix.ruby_version }})" + name: "Third-Party Repo Profile with Jekyll ${{ matrix.jekyll_version }} (Ruby ${{ matrix.ruby_version }})" runs-on: "ubuntu-latest" strategy: fail-fast: false matrix: ruby_version: - 2.7 + jekyll_version: + - "~> 4.0" + - "~> 3.9" env: BUNDLE_GEMFILE: "sandbox/Gemfile" BUNDLE_PATH: "vendor/bundle" BUNDLE_JOBS: 4 BUNDLE_RETRY: 3 + JEKYLL_VERSION: ${{ matrix.jekyll_version }} steps: - name: Checkout Jekyll SEO Tag uses: actions/checkout@v2