File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,20 @@ jobs:
31
31
runs-on : ubuntu-latest
32
32
steps :
33
33
- name : Checkout
34
- uses : actions/checkout@v4
34
+ uses : actions/checkout@v3
35
+ - name : Setup Ruby
36
+ uses : ruby/setup-ruby@v1
37
+ with :
38
+ ruby-version : " 3.1" # Not needed with a .ruby-version file
39
+ bundler-cache : true # runs 'bundle install' and caches installed gems automatically
40
+ cache-version : 0 # Increment this number if you need to re-download cached gems
35
41
- name : Setup Pages
36
- uses : actions/configure-pages@v5
42
+ uses : actions/configure-pages@v3
37
43
- name : Build with Jekyll
38
- uses : actions/jekyll-build-pages@v1
39
- with :
40
- source : ./
41
- destination : ./_site
44
+ # Outputs to the './_site' directory by default
45
+ run : bundle exec jekyll build --baseurl "STAG-AUIUI-P8VT"
46
+ env :
47
+ JEKYLL_ENV : production
42
48
- name : Upload artifact
43
49
uses : actions/upload-pages-artifact@v3
44
50
52
58
steps :
53
59
- name : Deploy to GitHub Pages
54
60
id : deployment
55
- uses : actions/deploy-pages@v4
61
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments