Skip to content

Commit 123634c

Browse files
committed
fix: build issues on GHA
1 parent 4ddb683 commit 123634c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
env:
4242
signingKey: ${{secrets.SIGNING_KEY}}
4343
signingPassword: ${{secrets.SIGNING_PASSWORD}}
44-
OSS_USERNAME: ${{secrets.OSS_USERNAME}}
45-
OSS_PASSWORD: ${{secrets.OSS_PASSWORD}}
44+
OSS_USERNAME: ${{secrets.MAVEN_USERNAME}}
45+
OSS_PASSWORD: ${{secrets.MAVEN_SECRET}}
4646
run: |
4747
OSS_USERNAME=$OSS_USERNAME OSS_PASSWORD=$OSS_PASSWORD
4848
signingKey=$signingKey signingPassword=$signingPassword

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import java.time.LocalDate
22

33
plugins {
44
id 'java-library'
5+
id 'base'
56
id 'jacoco'
67
id 'signing'
78
id 'maven-publish'
@@ -11,7 +12,7 @@ plugins {
1112
}
1213

1314
group = 'com.tokbox'
14-
archivesBaseName = 'opentok-server-sdk'
15+
base.archivesName = 'opentok-server-sdk'
1516
version = '4.16.1'
1617

1718
ext.githubPath = "opentok/Opentok-Java-SDK"

0 commit comments

Comments
 (0)