Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Fix ruby-version, see actions/runner#849
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeFlyingSheep committed Jan 13, 2022
1 parent 5a022ff commit 09ec976
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
ruby-version: '3.0'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Build
run: |
bundle exec rake book:all
run: bundle exec rake book:all

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
ruby-version: '3.0'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Build
run: |
bundle exec rake book:all
run: bundle exec rake book:all

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
Expand Down

0 comments on commit 09ec976

Please sign in to comment.