We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe3d6dd commit c974ec3Copy full SHA for c974ec3
.github/workflows/release.yml
@@ -54,6 +54,17 @@ jobs:
54
- name: Set the current release version
55
id: release_version
56
run: echo "release_version=${GITHUB_REF:11}" >> $GITHUB_OUTPUT
57
+ - name: Generate Docs
58
+ id: build
59
+ run: ./gradlew docs
60
+ - name: Deploy to GitHub Pages
61
+ id: deployment
62
+ uses: rainboyan/deploy-github-pages@v1.1.0
63
+ env:
64
+ VERSION: ${{ steps.release_version.outputs.release_version }}
65
+ TOKEN: ${{ secrets.GH_TOKEN }}
66
+ BRANCH: gh-pages
67
+ FOLDER: build/docs/manual
68
- name: Generate secring file
69
id: secring
70
env:
0 commit comments