Confused how to use enable_jekyll #769
-
I'm using GitHub Pages for https://github.com/acss-io/atomizer. Right now, GH Pages is setup on the I'm trying to use this action with the following settings: - name: Deploy
if: ${{ github.ref == 'refs/heads/master' }}
uses: peaceiris/actions-gh-pages@v3
with:
enable_jekyll: true
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_site When the job runs, the jekyll files are not built and nothing is copied to the gh-pages page. I tried to fix from the readme for first commit by changing the settings and running the build again but it still did not publish anything. It was my understanding that setting Source: https://github.com/acss-io/atomizer/runs/7418634700?check_suite_focus=true Are my assumptions incorrect or am I doing something wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Turns out I had |
Beta Was this translation helpful? Give feedback.
Turns out I had
publish_dir
incorrectly set to the output of the build, not the source files. Once I fixed that, the site was able to deploy properly.