Skip to content

Commit 6e9efe0

Browse files
committed
Add Averix repository configuration and update publish workflow
1 parent 83850e0 commit 6e9efe0

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ jobs:
3030
env:
3131
USERNAME: ${{ github.actor }}
3232
TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
AVERIX_USER: ${{ secrets.AVERIX_USER }}
34+
AVERIX_KEY: ${{ secrets.AVERIX_KEY }}
3335
BUILD_VERSION: ${{ github.ref_name }}

.idea/dictionaries/project.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

buildSrc/src/main/kotlin/kotlin-jvm.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ publishing {
5757
password = project.findProperty("gpr.key")?.toString() ?: System.getenv("TOKEN")
5858
}
5959
}
60+
maven {
61+
name = "Averix"
62+
url = uri("https://repo.averix.tech/repository/krescent/")
63+
credentials {
64+
username = project.findProperty("averix.user")?.toString() ?: System.getenv("AVERIX_USER")
65+
password = project.findProperty("averix.key")?.toString() ?: System.getenv("AVERIX_KEY")
66+
}
67+
}
6068
}
6169
}
6270

0 commit comments

Comments
 (0)