We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdb1480 commit a0f76aeCopy full SHA for a0f76ae
1 file changed
.github/workflows/openfe-doc-build.yaml
@@ -18,10 +18,23 @@ jobs:
18
uses: actions/checkout@v4
19
with:
20
path: openfe/docs/ExampleNotebooks
21
+
22
+ - name: Get current date
23
+ id: date
24
+ run: echo "date=$(date +%Y-%m-%d)" >> "${GITHUB_OUTPUT}"
25
- - name: Test file layout
26
+ - name: Install doc environment
27
+ uses: mamba-org/setup-micromamba@v2
28
+ with:
29
+ environment-file: openfe/docs/environment.yaml
30
+ cache-environment: true
31
+ cache-downloads: true
32
+ cache-environment-key: environment-${{ steps.date.outputs.date }}
33
+ cache-downloads-key: downloads-${{ steps.date.outputs.date }}
34
+ init-shell: bash
35
36
+ - name: Build the docs
37
run: |
- pwd
- ls -l
- ls -l *
- ls -l openfe/docs
38
+ cd openfe/docs
39
+ make
40
0 commit comments