Skip to content

Commit 157768a

Browse files
committed
add dart sass installation step
1 parent 56e9865 commit 157768a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/gh-pages.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@ on:
88

99
jobs:
1010
deploy:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-latest
1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.ref }}
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
submodules: true # Fetch Hugo themes (true OR recursive)
1818
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
1919

20+
- name: Install Dart-Sass
21+
run: sudo snap install dart-sass-embedded
22+
2023
- name: Setup Hugo
2124
uses: peaceiris/actions-hugo@v2
2225
with:

0 commit comments

Comments
 (0)