We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d671961 commit 500b5a0Copy full SHA for 500b5a0
.github/workflows/main.yml
@@ -126,4 +126,5 @@ jobs:
126
gitPublishPush \
127
-Dscan.tag.Documentation
128
env:
129
- GRGIT_USER: ${{ secrets.GH_TOKEN }}
+ GIT_USERNAME: git
130
+ GIT_PASSWORD: ${{ secrets.GH_TOKEN }}
documentation/documentation.gradle.kts
@@ -108,6 +108,9 @@ gitPublish {
108
sign = false
109
fetchDepth = 1
110
111
+ username = providers.environmentVariable("GIT_USERNAME")
112
+ password = providers.environmentVariable("GIT_PASSWORD")
113
+
114
contents {
115
from(docsDir)
116
into("docs")
0 commit comments