Skip to content

Commit

Permalink
fix build (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhpo authored Jan 26, 2024
1 parent a6e40b1 commit e05187e
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e05187e

Please sign in to comment.