Skip to content

Commit 2e85835

Browse files
committed
fix publishing path
1 parent 07b64d1 commit 2e85835

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test and Publish
1+
name: Publish
22

33
on:
44
workflow_run:

amplifyframework/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ publishing {
7575
repositories {
7676
maven {
7777
name = "GitHubPackages"
78-
url = uri("https://maven.pkg.github.com/jump-sdk/mobile-sdk-android")
78+
url = uri("https://maven.pkg.github.com/jump-sdk/aws-amplify-cognito-kotlin-multiplatform")
7979
credentials {
8080
username = System.getenv("GITHUB_ACTOR")
8181
password = System.getenv("GITHUB_TOKEN")

amplifyframework/src/commonMain/kotlin/com/jump/sdk/amplifyframework/CognitoException.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ package com.jump.sdk.amplifyframework
33
sealed class CognitoException(
44
override val message: String,
55
) : Exception(message) {
6-
object BadSrpB : CognitoException("Bad server public value 'B'")
7-
object HashOfAAndSrpBCannotBeZero : CognitoException("Hash of A and B cannot be zero")
6+
data object BadSrpB : CognitoException("Bad server public value 'B'")
7+
data object HashOfAAndSrpBCannotBeZero : CognitoException("Hash of A and B cannot be zero")
88
}

0 commit comments

Comments
 (0)