From e05187e8140befc12b24af105309f2eaad99f0c5 Mon Sep 17 00:00:00 2001 From: peterhpo <72750107+peterhpo@users.noreply.github.com> Date: Fri, 26 Jan 2024 14:10:38 +0100 Subject: [PATCH] fix build (again) --- .github/workflows/jekyll.yml | 44 ++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index b8f3614..f300158 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -28,31 +28,31 @@ concurrency: jobs: # Build job -build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.0' + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.0' - - name: Install Bundler - run: gem install bundler + - name: Install Bundler + run: gem install bundler - - name: Install Dependencies - run: bundle install + - name: Install Dependencies + run: bundle install - - name: Setup Pages - id: pages - uses: actions/configure-pages@v4 - - name: Build with Jekyll - run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" - env: - JEKYLL_ENV: production - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + - name: Setup Pages + id: pages + uses: actions/configure-pages@v4 + - name: Build with Jekyll + run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + env: + JEKYLL_ENV: production + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 # Deployment job deploy: