Skip to content

Add security section #14

Add security section

Add security section #14

Workflow file for this run

# 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/[email protected]
with:
branch: gh-pages
folder: build