Skip to content

Commit

Permalink
fix: hugo post css (#2395)
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Mészáros <csviri@gmail.com>
  • Loading branch information
csviri committed May 21, 2024
1 parent 1edd2bc commit e6edd17
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ jobs:
uses: actions/configure-pages@v4
- name: Install Node.js dependencies
working-directory: ./docsy
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
run: |
[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true
npm install -D autoprefixer
npm install -D postcss-cli
npm install -D postcss
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
Expand Down

0 comments on commit e6edd17

Please sign in to comment.