Skip to content

Polish draft specification prose #5

Polish draft specification prose

Polish draft specification prose #5

Workflow file for this run

name: Deploy spec to GitHub Pages
on:
push:
branches: [main]
paths:
- docs/draft-credkit-composite-proofs.html
- .github/workflows/deploy-spec.yml
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Stage site
run: |
mkdir -p _site
cp docs/draft-credkit-composite-proofs.html _site/index.html
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: _site
- id: deployment
uses: actions/deploy-pages@v4