diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d409c815..cac2568a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,8 +17,8 @@ jobs: - name: Configure Google Cloud credentials uses: google-github-actions/auth@v1 with: - workload_identity_provider: 'projects/271010089174/locations/global/workloadIdentityPools/github/providers/github-oidc' - service_account: 'github-actions@moonsworth-299m4oir.iam.gserviceaccount.com' + workload_identity_provider: 'projects/266324743316/locations/global/workloadIdentityPools/github/providers/github-oidc' + service_account: 'github-actions@mw-lunarclient-maven-repo.iam.gserviceaccount.com' - name: Setup Java uses: actions/setup-java@v3 diff --git a/build-logic/src/main/kotlin/apollo.publish-conventions.gradle.kts b/build-logic/src/main/kotlin/apollo.publish-conventions.gradle.kts index 6a8d3ced..4d8f9582 100644 --- a/build-logic/src/main/kotlin/apollo.publish-conventions.gradle.kts +++ b/build-logic/src/main/kotlin/apollo.publish-conventions.gradle.kts @@ -13,7 +13,7 @@ java { publishing { repositories.maven { - url = uri("artifactregistry://us-maven.pkg.dev/moonsworth-299m4oir/maven-public") + url = uri("artifactregistry://us-maven.pkg.dev/mw-lunarclient-maven-repo/public") } publications.create("mavenJava") { diff --git a/docs/developers/lightweight/protobuf/getting-started.mdx b/docs/developers/lightweight/protobuf/getting-started.mdx index c06832c9..3330c63c 100644 --- a/docs/developers/lightweight/protobuf/getting-started.mdx +++ b/docs/developers/lightweight/protobuf/getting-started.mdx @@ -26,7 +26,7 @@ Available fields for each message, including their types, are available on the B com.lunarclient apollo-protos - 1.0-SNAPSHOT + 0.0.2 ``` @@ -41,7 +41,7 @@ Available fields for each message, including their types, are available on the B } dependencies { - api 'com.lunarclient:apollo-protos:1.0-SNAPSHOT' + api 'com.lunarclient:apollo-protos:0.0.2' } ``` @@ -55,7 +55,7 @@ Available fields for each message, including their types, are available on the B } dependencies { - api("com.lunarclient:apollo-protos:1.0-SNAPSHOT") + api("com.lunarclient:apollo-protos:0.0.2") } ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 4ac0dc24..60742f48 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -11,7 +11,7 @@ geantyref = "1.3.11" idea = "1.1.7" jetbrains = "24.0.1" lombok = "1.18.38" -protobuf = "1.0-SNAPSHOT" +protobuf = "0.0.2" gson = "2.10.1" shadow = "8.1.1" spotless = "6.13.0" diff --git a/settings.gradle.kts b/settings.gradle.kts index 9a815b02..7aa5d2a4 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -19,7 +19,7 @@ dependencyResolutionManagement { repositories { maven("https://repo.papermc.io/repository/maven-public/") maven("https://oss.sonatype.org/content/repositories/snapshots") - maven("https://us-maven.pkg.dev/moonsworth-299m4oir/maven-public") + maven("https://us-maven.pkg.dev/mw-lunarclient-maven-repo/public") mavenCentral() mavenLocal() }