You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You might receive an email from `[email protected]` to verify your email.
80
+
Click the link in the email to complete the verification before proceeding.
81
+
82
+
<details>
83
+
84
+
<summary>gpg: keyserver send failed: Server indicated a failure</summary>
85
+
86
+
If you run into the `gpg: keyserver send failed: Server indicated a failure` error when trying to
87
+
upload the key from a macOS machine, you can try the solution proposed [here](https://github.com/asdf-vm/asdf-nodejs/issues/192#issuecomment-797448073):
88
+
89
+
```shell
90
+
echo"standard-resolver">~/.gnupg/dirmngr.conf
91
+
```
92
+
93
+
and then:
94
+
95
+
```shell
96
+
sudo pkill dirmngr
97
+
```
98
+
99
+
</details>
100
+
80
101
### Local Properties
81
102
82
-
Open your `$HOME/.gradle/gradle.properties` file at and fill in the values:
103
+
1. Navigate to https://oss.sonatype.org/ and **Log In** using the credentials from [Valentine](http://go/valentine).
104
+
1. Follow [these instructions](https://central.sonatype.org/publish/generate-token/) to **Access User Token**.
1. Open your `$HOME/.gradle/gradle.properties` file and fill in the values:
83
114
84
115
```
85
116
signing.keyId=<KEYID>
86
117
signing.password=<PASSWORDYOUCHOSE>
87
118
signing.secretKeyRingFile=<FULLPATHTOYOURGPGFILE>
88
-
mavenCentralRepositoryUsername=firebase-sonatype
89
-
mavenCentralRepositoryUsername=<PASSWORD FROM VALENTINE>
119
+
mavenCentralUsername=<USERNAME FROM THE XML ABOVE (eg. tokenuser)>
120
+
mavenCentralPassword=<PASSWORD FROM THE XML ABOVE (eg. tokenkey-dlghnfgh8+4LfXmg5Hsd8jd)>
90
121
```
91
122
92
-
## 2b - Publish and Release
123
+
## 2b - Publish and release
93
124
94
-
### Publish
125
+
_Publish_ and _release_ [used to be done](https://github.com/firebase/FirebaseUI-Android/blob/9.0.0/docs/internal/releasing.md#2b---publish-and-release)
126
+
in two separate manual steps, but starting in [v0.22.0](https://vanniktech.github.io/gradle-maven-publish-plugin/changelog/#0220-2022-09-09)
127
+
of the `com.vanniktech:gradle-maven-publish-plugin`, the `publishAllPublicationsToMavenRepository`
128
+
now handles the _publish_ step automatically and you only need to perform the _release_ manually.
95
129
96
-
Once you are sure the release branch is healthy, run the following command:
130
+
Once you are sure the release branch is healthy, run the following commands:
0 commit comments