File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,19 @@ jobs:
19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v4 # Updated to the latest version
22
+ uses : actions/checkout@v4
23
23
- name : Setup Pages
24
24
uses : actions/configure-pages@v2
25
25
- name : Build with Jekyll
26
26
uses : actions/jekyll-build-pages@v1
27
27
with :
28
28
source : ./
29
29
destination : ./_site
30
+ safe : false # Disable safe mode for better compatibility
31
+ - name : Debug _site directory
32
+ run : ls -la ./_site # Check if files exist
30
33
- name : Upload artifact
31
- uses : actions/upload-artifact@v4 # Updated from v3 to v4
34
+ uses : actions/upload-artifact@v4
32
35
with :
33
36
name : github-pages
34
37
path : ./_site
41
44
needs : build
42
45
steps :
43
46
- name : Download artifact
44
- uses : actions/download-artifact@v4 # Ensure you're using the latest version
47
+ uses : actions/download-artifact@v4
45
48
with :
46
49
name : github-pages
47
50
path : ./_site
You can’t perform that action at this time.
0 commit comments