Skip to content

Commit

Permalink
add flavor
Browse files Browse the repository at this point in the history
  • Loading branch information
jitsedesmet committed Apr 11, 2024
1 parent 728f0e7 commit a9cdf13
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,30 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
- name: Report - Setup Ruby
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
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: Build & link report
working-directory: ./_papers/thesis-report
- name: Report - compile
working-directory: ./_papers/thesis-report
run: |
cd _papers/thesis-report
bundle exec nanoc compile
bundle exec nanoc check internal_links mixed_content stale
cd ../../solution
- name: link report
working-directory: .
run: |
cd solution
ln -s _papers/thesis-report/output report
cd ..
- name: Setup Ruby
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
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
working-directory: .
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
Expand Down

0 comments on commit a9cdf13

Please sign in to comment.