Skip to content

Commit 08943f7

Browse files
committedOct 21, 2024·
Restore ietf build automation
1 parent 936cf2d commit 08943f7

File tree

1 file changed

+27
-9
lines changed

1 file changed

+27
-9
lines changed
 

‎.github/workflows/ci.yml

+27-9
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,32 @@ on:
44
- pull_request
55

66
jobs:
7-
specs:
7+
specs-markdown:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
11-
- uses: actions/setup-node@v4
12-
with:
13-
node-version: latest
14-
cache: npm
15-
- run: npm ci
16-
- run: npm run lint
17-
- run: npm run build-all
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
with:
13+
node-version: latest
14+
cache: npm
15+
- run: npm ci
16+
- run: npm run lint
17+
- run: npm run build-all
18+
19+
specs-ietf:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v3
23+
- uses: actions/setup-python@v4
24+
with:
25+
python-version: "3.10"
26+
- run: pip install --requirement requirements.txt
27+
- run: xml2rfc --version
28+
- run: make all
29+
- uses: actions/upload-artifact@v3
30+
with:
31+
name: specification-docs
32+
path: |
33+
*.html
34+
*.txt
35+
!requirements.txt

0 commit comments

Comments
 (0)
Please sign in to comment.