Skip to content

Commit 45a51a7

Browse files
committed
[nfc] Improve descriptions in CI
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@sifive.com>
1 parent 7f83854 commit 45a51a7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pandoc.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name:
1+
name: "Continuous Integration (CI)"
22

33
on:
44
workflow_dispatch:
@@ -19,12 +19,12 @@ jobs:
1919
permissions:
2020
contents: write
2121
steps:
22-
- name: Checkout
22+
- name: "Checkout chipsalliance/firrtl-spec"
2323
uses: actions/checkout@v3
2424
# We use `git describe` which requires tags
2525
with:
2626
fetch-depth: 0
27-
- name: "Install pandoc"
27+
- name: "Install pandoc ${{ env.pandoc-version }}, pandoc-crossref ${{ env.pandoc-crossref-version }}"
2828
shell: bash
2929
run: |
3030
mkdir -p usr/bin
@@ -42,20 +42,20 @@ jobs:
4242
echo '```' >> $GITHUB_STEP_SUMMARY
4343
exit 1
4444
fi
45-
- name: "Install TeX Live"
45+
- name: "Install Other Dependencies"
4646
shell: bash
4747
run: |
4848
sudo apt-get update
4949
sudo apt-get install graphviz latexmk texlive-latex-extra texlive-latex-recommended texlive-font-utils
5050
- name: "Markdown -> [pandox] -> [TeXLive] -> PDF"
5151
run: make
52-
- name: "Upload build directory"
52+
- name: "Upload Build Directory"
5353
uses: actions/upload-artifact@v3
5454
with:
5555
name: build
5656
path: build
5757
retention-days: 1
58-
- name: "Create Release if Tagged"
58+
- name: "Create Release If Tagged"
5959
uses: softprops/action-gh-release@v1
6060
if: startsWith(github.ref, 'refs/tags/')
6161
with:

0 commit comments

Comments
 (0)