Merge branch 'auto_test_action' of https://github.com/openid/oid4vc-h… #16
This file contains 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: openid4vc-high-assurance-interoperability-profile-sd-jwt-vc document push | |
on: | |
push: | |
paths: | |
- 'openid4vc*.md' | |
jobs: | |
compile-openid4vc-high-assurance-interoperability-profile-sd-jwt-vc: | |
name: Compile site assets | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run the build process with Docker | |
run: | | |
ls | |
docker run \ | |
-v /${{ github.workspace }}:/data danielfett/markdown2rfc \ | |
openid4vc-high-assurance-interoperability-profile-sd-jwt-vc-1_0.md | |
- name: rename | |
run: | | |
mv ./openid4vc-high-assurance-interoperability-profile-sd-jwt-vc*.html ./openid4vc-high-assurance-interoperability-profile-sd-jwt-vc-wg-draft.html | |
- uses: actions/upload-artifact@v3 | |
with: | |
# Artifact name | |
name: output # optional | |
# Destination path | |
path: ./openid4vc-high-assurance-interoperability-profile-sd-jwt-vc*.html # optional | |
publish-to-pages: | |
name: Publish to GitHub Pages | |
if: github.ref == 'refs/heads/main' | |
needs: compile-openid4vc-high-assurance-interoperability-profile-sd-jwt-vc | |
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@v2 | |
with: | |
name: output | |
- name: Upload pages artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: . | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |