From e7155b473a12c60551c71549bba4fb78aecd17b2 Mon Sep 17 00:00:00 2001
From: auwsom <auwsom@users.noreply.github.com>
Date: Tue, 8 Aug 2023 04:08:03 -0700
Subject: [PATCH] Themes dir correction and peaceiris deploy to GitHub Pages
 (#506)

* commit

* commit

* remove push to /public

---------

Co-authored-by: Alex Shpak <alex-shpak@users.noreply.github.com>
---
 .github/workflows/main.yml | 12 +++++++++++-
 exampleSite/config.toml    |  2 +-
 exampleSite/config.yaml    |  2 +-
 3 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 9ae4f54..3a1f309 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -11,7 +11,10 @@ jobs:
           - 'latest'
           - '0.79.0'
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
+        with:
+          submodules: true  # Fetch Hugo themes (true OR recursive)
+          fetch-depth: 0    # Fetch all history for .GitInfo and .Lastmod
 
       - name: Setup Hugo
         uses: peaceiris/actions-hugo@v2
@@ -22,3 +25,10 @@ jobs:
       - name: Run Hugo
         working-directory: exampleSite
         run: hugo --themesDir ../..
+
+      # - name: Deploy
+      #   uses: peaceiris/actions-gh-pages@v3
+      #   with:
+      #     github_token: ${{ secrets.GITHUB_TOKEN }}
+      #     publish_dir: ./public
+
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 9f37a09..6204c9b 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -1,4 +1,4 @@
-# hugo server --minify --themesDir ... --baseURL=http://0.0.0.0:1313/theme/hugo-book/
+# hugo server --minify --themesDir ../.. --baseURL=http://0.0.0.0:1313/theme/hugo-book/
 
 baseURL = 'https://example.com/'
 title = 'Hugo Book'
diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml
index b9b8016..d80ee95 100644
--- a/exampleSite/config.yaml
+++ b/exampleSite/config.yaml
@@ -1,4 +1,4 @@
-# hugo server --minify --themesDir ... --baseURL=http://0.0.0.0:1313/theme/hugo-book/
+# hugo server --minify --themesDir ../.. --baseURL=http://0.0.0.0:1313/theme/hugo-book/
 
 baseURL: https://example.com/
 title: Hugo Book
-- 
GitLab