Address IETF review comments #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: CI | |
on: | |
push: | |
branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install xml2rfc | |
run: pip install xml2rfc | |
- name: install WeasyPrint | |
run: | | |
pip install WeasyPrint | |
- name: build html | |
run: | | |
mkdir build | |
xml2rfc *.xml -o build/index.txt --text | |
- name: deploy to GH pages | |
uses: JamesIves/github-pages-deploy-action@v4.3.3 | |
with: | |
branch: gh-pages | |
folder: build |