Skip to content

Add working repository for HttpSig (#239) #74

Add working repository for HttpSig (#239)

Add working repository for HttpSig (#239) #74

Workflow file for this run

# Workflow for processing and publishing bikeshed proposals to github pages
name: publish proposals
on:
push:
# only concerned with changes in the main branch
branches: [ main ]
# only invoke when a bikeshed document is updated
# paths: [ '*.bs' ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: upgrade pip
run: python3 -m pip install --upgrade pip
- name: install bikeshed
run: |
python3 -m pip install --upgrade bikeshed
bikeshed update
# There are no active bikeshed documents at present
#- name: generate html
# run: for bsdoc in proposals/**/*.bs; do bikeshed spec $bsdoc; done
# There are no active MMD documents at present
#- name: generate svg
# run: for diagram in proposals/**/*.mmd; do docker run --rm -v "$PWD:/data" minlag/mermaid-cli -i /data/$diagram; done
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./proposals
personal_token: ${{ secrets.GITHUB_TOKEN }}