Skip to content

Commit 4bba545

Browse files
committed
explicitly copying the images in teh destination folder
1 parent 7e341bb commit 4bba545

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/mkdocs.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,14 @@ jobs:
3030
run: |
3131
mkdocs build --verbose # Build the site.
3232
33+
- name: Copy Images to Site
34+
run: |
35+
mkdir -p site/assets/images
36+
cp -r assets/images/* site/assets/images/
37+
3338
- name: Create CNAME File
3439
run: echo "prabha.ai" > site/CNAME
35-
# Replace "yourcustomdomain.com" with your actual custom domain.
40+
# Replace "prabha.ai" with your actual custom domain.
3641
# The 'site' directory is the default build directory for MkDocs.
3742
# If you have configured a different directory, adjust the path accordingly.
3843

0 commit comments

Comments
 (0)