https://github.com/embulk/embulk-util-aws-credentials
https://github.com/embulk/embulk-util-aws-credentials
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/embulk/embulk-util-aws-credentials
- Owner: embulk
- License: apache-2.0
- Created: 2020-04-14T09:26:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-28T08:39:14.000Z (about 2 years ago)
- Last Synced: 2025-04-05T09:51:05.409Z (about 2 months ago)
- Language: Java
- Size: 521 KB
- Stars: 1
- Watchers: 10
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
embulk-util-aws-credentials
============================How to release
---------------See also: https://central.sonatype.org/pages/gradle.html
### Sonatype
1. Create your account on Sonatype OSSRH.
2. Set your account information in your `gradle.properties` (usually in `~/.gradle/gradle.properties`).
* ```
ossrhUsername=
ossrhPassword=
```### OpenPGP
1. Create your own OpenPGP key pair.
2. Set your OpenPGP key information in your `gradle.properties`.
* ```
# For example: signing.keyId=1234ABCD
signing.keyId=
signing.password=
# For example: signing.secretKeyRingFile=/home/you/.gnupg/1234567890ABCDEF1234567890ABCDEF12345678.secring.gpg
signing.secretKeyRingFile=
```### Release
1. Create a detached `HEAD` from the `master` branch.
* ```
git checkout master
git checkout --detach
```
2. Remove `-SNAPSHOT` from the version number in `build.gradle`.
3. Commit it and tag.
* ```
git add build.gradle
git commit -m "Release vX.Y.Z"
git tag vX.Y.Z
```
4. Release.
* ```
./gradlew publishMavenPublicationToMavenCentralRepository
```
5. Push the tag.
* ```
git push -u origin vX.Y.Z
```
6. Back to `master`.
* ```
git checkout master
```
7. Continue to the next `-SNAPSHOT` version.