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 2efe918 commit ff60443Copy full SHA for ff60443
.github/workflows/release.yaml
@@ -31,5 +31,4 @@ jobs:
31
- name: Build and Publish Artifact
32
run: ./gradlew clean publish
33
env:
34
- GITHUB_USERNAME: ${{ github.actor }}
35
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build.gradle.kts
@@ -43,7 +43,7 @@ publishing {
43
url = uri("https://maven.pkg.github.com/ctrl-hub/sdk.kotlin")
44
45
credentials {
46
- username = System.getenv("GITHUB_USERNAME")
+ username = System.getenv("GITHUB_ACTOR")
47
password = System.getenv("GITHUB_TOKEN")
48
}
49
0 commit comments