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 810e4da commit bd049a0Copy full SHA for bd049a0
.github/workflows/ci.yaml
@@ -19,7 +19,7 @@ jobs:
19
- name: Checkout the repo
20
uses: actions/checkout@v2
21
- name: Run the CI task
22
- run: ./gradlew ci -Pgradle.publish.key="$GRADLE_KEY" -Pgradle.publish.secret="$GRADLE_SECRET"
+ run: ./gradlew ci
23
env:
24
GRADLE_KEY: ${{ secrets.GRADLE_KEY }}
25
GRADLE_SECRET: ${{ secrets.GRADLE_SECRET }}
build.gradle.kts
@@ -25,6 +25,9 @@ repositories {
group = "com.gradleup"
26
version = "0.3"
27
28
+project.extra.set("gradle.publish.key", System.getenv("GRADLE_KEY"))
29
+project.extra.set("gradle.publish.secret", System.getenv("GRADLE_SECRET"))
30
+
31
val shadeConfiguration = configurations.create("shade")
32
33
dependencies {
0 commit comments