Skip to content

Commit a70935c

Browse files
committed
testing
1 parent f6b9395 commit a70935c

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
tag-release:
3434
permissions:
3535
contents: write
36-
runs-on: ubuntu-22.04
36+
runs-on: self-hosted
3737
steps:
3838
- name: checkout
3939
uses: actions/checkout@v4
@@ -53,7 +53,7 @@ jobs:
5353
contents: write
5454
packages: write
5555
needs: tag-release
56-
runs-on: ubuntu-22.04
56+
runs-on: self-hosted
5757
steps:
5858
- name: checkout
5959
uses: actions/checkout@v4
@@ -87,7 +87,7 @@ jobs:
8787
permissions:
8888
contents: write
8989
needs: build-java
90-
runs-on: ubuntu-22.04
90+
runs-on: self-hosted
9191
steps:
9292
- name: checkout
9393
uses: actions/checkout@v4

build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ def sbeVersion = file('version.txt').text.trim()
6666

6767
ext {
6868
isReleaseVersion = !sbeVersion.endsWith('-SNAPSHOT')
69-
releasesRepoUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
70-
snapshotsRepoUrl = 'https://oss.sonatype.org/content/repositories/snapshots/'
69+
releasesRepoUrl = 'http://localhost:8081/artifactory/'
70+
snapshotsRepoUrl = 'http://localhost:8081/artifactory/'
7171

7272
if (!project.hasProperty('ossrhUsername')) {
7373
ossrhUsername = ''
@@ -77,8 +77,8 @@ ext {
7777
ossrhPassword = ''
7878
}
7979

80-
signingKey = project.findProperty("signingKey")
81-
signingPassword = project.findProperty("signingPassword")
80+
// signingKey = project.findProperty("signingKey")
81+
// signingPassword = project.findProperty("signingPassword")
8282
}
8383

8484
def projectPom = {
@@ -328,6 +328,7 @@ project(':sbe-tool') {
328328
repositories {
329329
maven {
330330
url(!isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
331+
allowInsecureProtocol = true
331332
credentials {
332333
username = ossrhUsername
333334
password = ossrhPassword
@@ -398,6 +399,7 @@ project(':sbe-all') {
398399
repositories {
399400
maven {
400401
url(!isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
402+
allowInsecureProtocol = true
401403
credentials {
402404
username = ossrhUsername
403405
password = ossrhPassword
@@ -514,6 +516,7 @@ project(':sbe-samples') {
514516
repositories {
515517
maven {
516518
url(!isReleaseVersion ? snapshotsRepoUrl : releasesRepoUrl)
519+
allowInsecureProtocol = true
517520
credentials {
518521
username = ossrhUsername
519522
password = ossrhPassword

0 commit comments

Comments
 (0)