-
Notifications
You must be signed in to change notification settings - Fork 7
51 lines (49 loc) · 1.78 KB
/
Build-oid4vc-haip-sd-jwt-vc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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