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 e590ebf commit 4ab3816Copy full SHA for 4ab3816
.github/workflows/deploy-preview.yaml
@@ -40,15 +40,18 @@ jobs:
40
with:
41
node-version: "18"
42
43
+ - name: Build Assets
44
+ run: npm ci && npm run prod
45
+
46
+ # Must be run after "npm ci" because installing hugo-bin
47
+ # removes the vendor directory that is created by "bundle install"
48
+ # https://github.com/fenneclab/hugo-bin/blob/a5500e4f622f46886947d3438243bd97cfe6c04c/lib/install.js#L28-L30
49
- name: Setup Ruby
50
uses: ruby/setup-ruby@v1
51
52
ruby-version: 2.6
53
bundler-cache: true
54
- - name: Build Assets
- run: npm ci && npm run prod
-
55
- name: Fetch Documentation
56
run: |
57
python -m pip install poetry
0 commit comments