Replies: 1 comment 1 reply
-
|
I'm updating the documentation for Hyas 2.4 (and Doks 1.6) — your input will find its place. Thanks! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
First of all, thank you for creating this awesome framework for personal sites.
I would like to contribute my two cents on the issues I ran as a new user:
When deploying my code to GitHub Pages, I had some errors because GitHub couldn't find Hugo. So I added the following steps before the Checkout step:
- name: Install Hugo CLI run: | wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ && sudo dpkg -i ${{ runner.temp }}/hugo.deb - name: Install Dart Sass run: sudo snap install dart-sassI took the code from the base hugo deployment, I don't know if other new users may run into the same issue.
Beta Was this translation helpful? Give feedback.
All reactions