Skip to content

Commit 06f22b6

Browse files
committed
create developer manual in CI
Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>
1 parent b073ee0 commit 06f22b6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ on:
1313
- /^release\/.*$/
1414

1515
jobs:
16+
Docs:
17+
runs-on: ubuntu-20.04
18+
container: texlive/texlive:latest-medium
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: generate PDF
22+
run: |
23+
make docs
24+
cp doc/crypt.pdf crypt-${{ github.run_id }}.pdf
25+
- name: upload PDF
26+
uses: actions/upload-artifact@v3
27+
with:
28+
name: crypt-${{ github.run_id }}.pdf
29+
path: crypt-${{ github.run_id }}.pdf
1630
Build:
1731
runs-on: ${{ matrix.os }}
1832
strategy:

0 commit comments

Comments
 (0)