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