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 b51cb0c commit 9807f79Copy full SHA for 9807f79
.github/workflows/deploy-production.yaml
@@ -29,15 +29,18 @@ jobs:
29
with:
30
node-version: "18"
31
32
+ - name: Build Assets
33
+ run: npm ci && npm run prod
34
+
35
+ # Ruby must be set up after running "npm ci" because installing hugo-bin via npm
36
+ # removes the vendor directory that is created by "bundle install"
37
+ # https://github.com/fenneclab/hugo-bin/blob/a5500e4f622f46886947d3438243bd97cfe6c04c/lib/install.js#L28-L30
38
- name: Setup Ruby
39
uses: ruby/setup-ruby@v1
40
41
ruby-version: 2.6
42
bundler-cache: true
43
- - name: Build Assets
- run: npm ci && npm run prod
-
44
- name: Fetch Documentation
45
run: |
46
python -m pip install poetry
0 commit comments