Skip to content

Commit a25ab64

Browse files
committed
Fix workflow
1 parent 4aac43b commit a25ab64

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ jobs:
3434
- name: Checkout
3535
uses: actions/checkout@v3
3636
- name: Setup Ruby
37-
uses: ruby/setup-ruby@0a29871fe2b0200a17a4497bae54fe5df0d973aa # v1.115.3
37+
uses: ruby/setup-ruby@v1
3838
with:
39-
ruby-version: '3.0' # Not needed with a .ruby-version file
39+
# runs-on: ubuntu-22.04
40+
ruby-version: '3.1' # Not needed with a .ruby-version file
4041
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4142
cache-version: 0 # Increment this number if you need to re-download cached gems
4243
- name: Setup Pages
4344
id: pages
4445
uses: actions/configure-pages@v2
4546
- name: Build with Jekyll
4647
# Outputs to the './_site' directory by default
47-
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path
48-
}}"
48+
run: bundle exec jekyll build --baseurl "${{steps.pages.outputs.base_path}}"
4949
env:
5050
JEKYLL_ENV: production
5151
- name: Upload artifact
@@ -56,7 +56,7 @@ jobs:
5656
deploy:
5757
environment:
5858
name: github-pages
59-
url: ${{ steps.deployment.outputs.page_url }}
59+
url: ${{steps.deployment.outputs.page_url}}
6060
runs-on: ubuntu-latest
6161
needs: build
6262
steps:

0 commit comments

Comments
 (0)