Skip to content

Commit d793608

Browse files
committed
Revert postcss changes due to Hugo bug
1 parent 88c1f9a commit d793608

3 files changed

Lines changed: 912 additions & 0 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,21 @@ jobs:
2222
with:
2323
hugo-version: '0.96.0'
2424
extended: true
25+
26+
- name: Setup Node
27+
uses: actions/setup-node@v1
28+
with:
29+
node-version: '12.x'
30+
31+
- name: Cache dependencies
32+
uses: actions/cache@v1
33+
with:
34+
path: ~/.npm
35+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
36+
restore-keys: |
37+
${{ runner.os }}-node-
38+
39+
- run: npm ci
2540
- run: hugo
2641
env:
2742
HUGO_ENV: production

0 commit comments

Comments
 (0)