Fix description of deviceauth_alg_values for mdoc + add examples #1444
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: OID4VP document push | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| compile-oid4vc: | |
| name: Compile site assets | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run the build process with Docker | |
| run: | | |
| docker run \ | |
| -v /${{ github.workspace }}:/data danielfett/markdown2rfc \ | |
| openid-4-verifiable-presentations-1_0.md | |
| - name: rename | |
| run: | | |
| mv ./openid-4-verifiable-presentations-1_0*.html ./openid-4-verifiable-presentations-wg-draft.html | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| # Artifact name | |
| name: output # optional | |
| # Destination path | |
| path: ./openid-4-verifiable-presentations*.html # optional | |
| publish-to-pages: | |
| name: Publish to GitHub Pages | |
| if: github.ref == 'refs/heads/main' | |
| needs: [ compile-oid4vc ] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Download artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: output | |
| - name: Upload pages artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: . | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |