Skip to content

Commit

Permalink
[SKIP] Add missing dependency installation to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
themkat committed Jul 29, 2024
1 parent 948dc36 commit 023d6b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
id: pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
run: |
bundle install
bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
Expand Down

0 comments on commit 023d6b1

Please sign in to comment.