Skip to content

Commit

Permalink
fix publishing path
Browse files Browse the repository at this point in the history
  • Loading branch information
hbmartin committed Oct 15, 2023
1 parent 07b64d1 commit 2e85835
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test and Publish
name: Publish

on:
workflow_run:
Expand Down
2 changes: 1 addition & 1 deletion amplifyframework/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/jump-sdk/mobile-sdk-android")
url = uri("https://maven.pkg.github.com/jump-sdk/aws-amplify-cognito-kotlin-multiplatform")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package com.jump.sdk.amplifyframework
sealed class CognitoException(
override val message: String,
) : Exception(message) {
object BadSrpB : CognitoException("Bad server public value 'B'")
object HashOfAAndSrpBCannotBeZero : CognitoException("Hash of A and B cannot be zero")
data object BadSrpB : CognitoException("Bad server public value 'B'")
data object HashOfAAndSrpBCannotBeZero : CognitoException("Hash of A and B cannot be zero")
}

0 comments on commit 2e85835

Please sign in to comment.