File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -33,21 +33,34 @@ jobs:
33
33
steps :
34
34
- name : Checkout
35
35
uses : actions/checkout@v4
36
+
37
+ - name : " Setup PHP"
38
+ uses : shivammathur/setup-php@v2
39
+ with :
40
+ php-version : 8.4}
41
+
42
+ - name : " Update FanArt"
43
+ run : |
44
+ php updateData.php
45
+
36
46
- name : Setup Ruby
37
47
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
38
48
uses : ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
39
49
with :
40
50
ruby-version : ' 3.1' # Not needed with a .ruby-version file
41
51
bundler-cache : true # runs 'bundle install' and caches installed gems automatically
42
52
cache-version : 0 # Increment this number if you need to re-download cached gems
53
+
43
54
- name : Setup Pages
44
55
id : pages
45
56
uses : actions/configure-pages@v5
57
+
46
58
- name : Build with Jekyll
47
59
# Outputs to the './_site' directory by default
48
60
run : bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
49
61
env :
50
62
JEKYLL_ENV : production
63
+
51
64
- name : Upload artifact
52
65
# Automatically uploads an artifact from the './_site' directory by default
53
66
uses : actions/upload-pages-artifact@v3
You can’t perform that action at this time.
0 commit comments