diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9ae4f54a..3a1f3090 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 9f37a094..6204c9bc 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 b9b80167..d80ee95a 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