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 1d68c0a commit 2fe07d5Copy full SHA for 2fe07d5
.github/workflows/Documentation.yml
@@ -20,13 +20,17 @@ jobs:
20
- name: Build html
21
run: bin/gradle dokkaHtml --no-daemon --stacktrace
22
- name: Upload GitHub Pages artifact
23
- uses: actions/upload-pages-artifact@v2
+ uses: actions/upload-pages-artifact@v3
24
with:
25
path: lib/build/dokka/html
26
# Publish job
27
publish-documentation:
28
+ environment:
29
+ name: github-pages
30
+ url: ${{ steps.deployment.outputs.page_url }}
31
needs: build-documentation
32
runs-on: ubuntu-latest
33
steps:
34
- name: Deploy GitHub Pages site
- uses: actions/deploy-pages@v3
35
+ id: deployment
36
+ uses: actions/deploy-pages@v4
0 commit comments