Skip to content

Commit c379fad

Browse files
authored
Adding fanart update
1 parent 358b302 commit c379fad

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/jekyll.yml

+14
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,35 @@ jobs:
3333
steps:
3434
- name: Checkout
3535
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+
3647
- name: Setup Ruby
3748
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
3849
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
3950
with:
4051
ruby-version: '3.1' # Not needed with a .ruby-version file
4152
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4253
cache-version: 0 # Increment this number if you need to re-download cached gems
54+
4355
- name: Setup Pages
4456
id: pages
4557
uses: actions/configure-pages@v5
58+
4659
- name: Build with Jekyll
4760
# Outputs to the './_site' directory by default
4861
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
4962
env:
5063
JEKYLL_ENV: production
64+
5165
- name: Upload artifact
5266
# Automatically uploads an artifact from the './_site' directory by default
5367
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)