Skip to content

Commit

Permalink
added workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Haine committed Sep 1, 2023
1 parent fb00ab8 commit bda761f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/Build-SIOPv2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: OID4VCI document push
on:
push:
paths:
- 'openid-connect-self-issued-v2-1_0.md'

jobs:
compile:
name: Compile site assets
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run the build process with Docker
run: |
docker run \
-v /${{ github.workspace }}:/data danielfett/markdown2rfc \
openid-connect-self-issued-v2-1_0.md
- uses: actions/upload-artifact@v3
with:
# Artifact name
name: OID4CI # optional
# Destination path
path: ./openid-connect-self-issued-v2-*.html # optional

0 comments on commit bda761f

Please sign in to comment.