We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 506a729 commit e26b24bCopy full SHA for e26b24b
1 file changed
.github/workflows/release_actions.yml
@@ -18,6 +18,14 @@ jobs:
18
java-version: 1.11
19
- name: Generate Javadoc
20
run: ./gradlew javadoc
21
+ - name: Push changes
22
+ run: |
23
+ git config --global user.name "github-actions[bot]"
24
+ git config --global user.email "actions@github.com"
25
+
26
+ git add docs
27
+ git commit -m "Update Javadoc (${GITHUB_SHA:0:7})"
28
+ git push
29
publish:
30
needs: [generateJavadoc]
31
if: success()
0 commit comments