Skip to content

Commit

Permalink
fix(workflows) : add prerequisites for docsy
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoFgrx committed Oct 1, 2023
1 parent 7b3afdd commit c3d7317
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,14 @@ jobs:
- 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
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install NPM
run : sudo snap install npm
- name: Install PostCSS
run : |
npm install -D autoprefixer
npm install -D postcss-cli
npm install -D postcss
- name: Install Dart Sass
run: sudo snap install dart-sass
- name: Checkout
Expand Down

0 comments on commit c3d7317

Please sign in to comment.