We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0e6903 commit b4f4033Copy full SHA for b4f4033
.github/workflows/build-everything.yml
@@ -45,3 +45,25 @@ jobs:
45
openid-caep-specification-1_0.txt
46
openid-risc-profile-specification-1_0.html
47
openid-risc-profile-specification-1_0.txt
48
+ publish-to-pages:
49
+ if: github.ref == 'refs/heads/main'
50
+ needs: [build-rfc]
51
+ runs-on: ubuntu-latest
52
+ permissions:
53
+ pages: write
54
+ id-token: write
55
+ environment:
56
+ name: github-pages
57
+ url: ${{ steps.deployment.outputs.page_url }}
58
+ steps:
59
+ - name: Download artifact
60
+ uses: actions/download-artifact@v2
61
+ with:
62
+ name: output
63
+ - name: Upload pages artifact
64
+ uses: actions/upload-pages-artifact@v1
65
66
+ path: .
67
+ - name: Deploy to GitHub Pages
68
+ id: deployment
69
+ uses: actions/deploy-pages@v2
0 commit comments