File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -19,22 +19,22 @@ jobs:
1919 runs-on : ubuntu-latest
2020 steps :
2121 - name : Checkout
22- uses : actions/checkout@v4 # Update to v4
23- - name : Setup Ruby
24- uses : ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf
25- with :
26- ruby-version : ' 3.1 '
27- bundler-cache : true
28- cache-version : 0
22+ uses : actions/checkout@v4
23+ - name : Install Ruby and Bundler
24+ run : |
25+ sudo apt-get update
26+ sudo apt-get install -y ruby-full
27+ ruby -v # Check Ruby version
28+ gem install bundler # Install Bundler
2929 - name : Setup Pages
3030 id : pages
31- uses : actions/configure-pages@v3 # Keep using v3 for pages configuration
31+ uses : actions/configure-pages@v3
3232 - name : Build with Jekyll
3333 run : bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
3434 env :
3535 JEKYLL_ENV : production
3636 - name : Upload artifact
37- uses : actions/upload-pages-artifact@v3 # Update to v3 (pages artifact upload)
37+ uses : actions/upload-pages-artifact@v3
3838
3939 deploy :
4040 environment :
4545 steps :
4646 - name : Deploy to GitHub Pages
4747 id : deployment
48- uses : actions/deploy-pages@v2 # Use v2 for deployment
48+ uses : actions/deploy-pages@v2
You can’t perform that action at this time.
0 commit comments