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 6b3d3b9 commit db2e489Copy full SHA for db2e489
.github/workflows/Documentation.yml
@@ -12,15 +12,24 @@ permissions:
12
id-token: write
13
14
jobs:
15
- publish-documentation:
+ build-documentation:
16
runs-on: ubuntu-latest
17
steps:
18
- uses: actions/checkout@v3
19
- name: Build html
20
run: bin/gradle dokkaHtml --no-daemon --stacktrace
21
- name: Upload GitHub Pages artifact
22
- uses: actions/upload-pages-artifact@v1.0.7
+ uses: actions/upload-pages-artifact@v3
23
with:
24
path: lib/build/dokka/html
25
+
26
+ publish-documentation:
27
+ environment:
28
+ name: github-pages
29
+ url: ${{ steps.deployment.outputs.page_url }}
30
+ needs: build-documentation
31
+ runs-on: ubuntu-latest
32
+ steps:
33
- name: Deploy GitHub Pages site
- uses: actions/[email protected]
34
+ id: deployment
35
+ uses: actions/deploy-pages@v4
0 commit comments