File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- name :
1
+ name : " Continuous Integration (CI) "
2
2
3
3
on :
4
4
workflow_dispatch :
@@ -19,12 +19,12 @@ jobs:
19
19
permissions :
20
20
contents : write
21
21
steps :
22
- - name : Checkout
22
+ - name : " Checkout chipsalliance/firrtl-spec "
23
23
uses : actions/checkout@v3
24
24
# We use `git describe` which requires tags
25
25
with :
26
26
fetch-depth : 0
27
- - name : " Install pandoc"
27
+ - name : " Install pandoc ${{ env.pandoc-version }}, pandoc-crossref ${{ env.pandoc-crossref-version }} "
28
28
shell : bash
29
29
run : |
30
30
mkdir -p usr/bin
@@ -42,20 +42,20 @@ jobs:
42
42
echo '```' >> $GITHUB_STEP_SUMMARY
43
43
exit 1
44
44
fi
45
- - name : " Install TeX Live "
45
+ - name : " Install Other Dependencies "
46
46
shell : bash
47
47
run : |
48
48
sudo apt-get update
49
49
sudo apt-get install graphviz latexmk texlive-latex-extra texlive-latex-recommended texlive-font-utils
50
50
- name : " Markdown -> [pandox] -> [TeXLive] -> PDF"
51
51
run : make
52
- - name : " Upload build directory "
52
+ - name : " Upload Build Directory "
53
53
uses : actions/upload-artifact@v3
54
54
with :
55
55
name : build
56
56
path : build
57
57
retention-days : 1
58
- - name : " Create Release if Tagged"
58
+ - name : " Create Release If Tagged"
59
59
uses : softprops/action-gh-release@v1
60
60
if : startsWith(github.ref, 'refs/tags/')
61
61
with :
You can’t perform that action at this time.
0 commit comments