Skip to content

Commit d47c113

Browse files
authored
publish artifacts to hypertrace artifactory (#14)
1 parent e1a88d1 commit d47c113

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
with:
3434
args: publish
3535
env:
36-
ORG_GRADLE_PROJECT_publishUser: ${{ secrets.BINTRAY_USER }}
37-
ORG_GRADLE_PROJECT_publishApiKey: ${{ secrets.BINTRAY_API_KEY }}
36+
ORG_GRADLE_PROJECT_artifactory_contextUrl: ${{ secrets.ARTIFACTORY_CONTEXT_URL }}
37+
ORG_GRADLE_PROJECT_artifactory_user: ${{ secrets.ARTIFACTORY_PUBLISH_USER }}
38+
ORG_GRADLE_PROJECT_artifactory_password: ${{ secrets.ARTIFACTORY_PUBLISH_TOKEN }}
3839

3940

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
22
import org.hypertrace.gradle.publishing.License
33

44
plugins {
5-
id("org.hypertrace.repository-plugin") version "0.1.2"
6-
id("org.hypertrace.ci-utils-plugin") version "0.1.1"
7-
id("org.hypertrace.publish-plugin") version "0.3.0" apply false
8-
id("org.hypertrace.jacoco-report-plugin") version "0.1.0" apply false
5+
id("org.hypertrace.repository-plugin") version "0.4.0"
6+
id("org.hypertrace.ci-utils-plugin") version "0.3.0"
7+
id("org.hypertrace.publish-plugin") version "1.0.2" apply false
8+
id("org.hypertrace.jacoco-report-plugin") version "0.2.0" apply false
99
}
1010

1111
subprojects {

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ pluginManagement {
44
repositories {
55
mavenLocal()
66
gradlePluginPortal()
7-
maven("https://dl.bintray.com/hypertrace/maven")
7+
maven("https://hypertrace.jfrog.io/artifactory/maven")
88
}
99
}
1010

1111
plugins {
12-
id("org.hypertrace.version-settings") version "0.1.1"
12+
id("org.hypertrace.version-settings") version "0.2.0"
1313
}
1414

1515
include(":grpc-client-utils")

0 commit comments

Comments
 (0)