We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13465c2 commit 20671e7Copy full SHA for 20671e7
.github/workflows/build-staging-website.yml
@@ -47,10 +47,20 @@ jobs:
47
cat website/_config.yml
48
shell: bash
49
50
+ # Install some dependencies to try and fix Ruby randomly crashing
51
+ # Taken from https://github.com/sass/sassc-ruby/issues/146#issuecomment-771042986
52
+ - name: Install some dependencies for Ruby
53
+ run: |
54
+ set -x \
55
+ && sudo apt update \
56
+ && sudo apt install -y --no-install-recommends \
57
+ libffi-dev
58
+ shell: bash
59
+
60
- name: 🔨 install dependencies & build site
61
uses: limjh16/jekyll-action-ts@v2
62
with:
- enable_cache: false
63
+ enable_cache: true
64
jekyll_src: website
65
66
# Then we need to prune any directories that don't match to currently active branches
0 commit comments