Skip to content

Clarify archive file rule #93

Clarify archive file rule

Clarify archive file rule #93

Workflow file for this run

name: Rebuild Index
on: [push]
jobs:
build:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- uses: actions/checkout@v1
- uses: Shirakumo/[email protected]
with:
input: specification.mess
output: specification.html
- uses: Shirakumo/[email protected]
with:
input: specification.mess
output: specification.pdf
format: latex
styling: style.tex
- shell: bash
run: |
mkdir -p /tmp/markless/
cp specification.pdf style.css card.png index.html /tmp/markless/
sed -e '/<main>/{r specification.html' -e 'd}' template.ctml > /tmp/markless/specification.html
- name: Upload Github Pages Artefact
uses: actions/[email protected]
with:
path: /tmp/markless/
- name: Write to Github Pages
uses: actions/deploy-pages@v4