We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2a88a6 commit ab77245Copy full SHA for ab77245
.github/workflows/gh-pages.yml
@@ -78,13 +78,13 @@ jobs:
78
- name: Render HTML
79
run: xml2rfc --html openid-provider-commands-1_0.xml --out html/$BRANCH_NAME.html
80
81
- - id: deployment
82
- name: Deploy to GitHub Pages
83
- if: success()
84
- uses: crazy-max/ghaction-github-pages@v2
+ - name: Setup Pages
+ uses: actions/configure-pages@v5
+
+ - name: Upload artifact
85
+ uses: actions/upload-pages-artifact@v3
86
with:
- target_branch: gh-pages
87
- build_dir: html
88
- keep_history: true
+ # Upload entire repository
+ path: 'html'
89
env:
90
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments