Skip to content

Commit b0063ed

Browse files
committed
Update workflow to match distro ruby version
The distro ruby version was updates from 3.0.0 to 3.2.0. Signed-off-by: Winford <[email protected]>
1 parent fddc8b5 commit b0063ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
- name: Install Bundler Deps
4848
if: steps.cache.outputs.bundler-cache-hit != 'true'
4949
run: |
50-
export PATH=${PATH}:/home/runner/.local/share/gem/ruby/3.0.0/bin
51-
/home/runner/.local/share/gem/ruby/3.0.0/bin/bundle config set --local path '/home/runner/.local/vendor/bundle'
52-
/home/runner/.local/share/gem/ruby/3.0.0/bin/bundle install
50+
export PATH=${PATH}:/home/runner/.local/share/gem/ruby/3.2.0/bin
51+
/home/runner/.local/share/gem/ruby/3.2.0/bin/bundle config set --local path '/home/runner/.local/vendor/bundle'
52+
/home/runner/.local/share/gem/ruby/3.2.0/bin/bundle install
5353
5454
- uses: actions/checkout@v3
5555
id: checkout-production
@@ -60,7 +60,7 @@ jobs:
6060

6161
- name: Build Site
6262
run: |
63-
/home/runner/.local/share/gem/ruby/3.0.0/bin/bundle exec jekyll build -d www
63+
/home/runner/.local/share/gem/ruby/3.2.0/bin/bundle exec jekyll build -d www
6464
touch www/.nojekyll
6565
6666
- name: Commit files

0 commit comments

Comments
 (0)