Skip to content

Add missing shells to README #1120

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Available Maven profiles:

Profiles can be combined, e.g.

```
```shell
./mvnw clean install -Pdocker -Pit -Pjdk17-aarch64
```

Expand Down Expand Up @@ -104,21 +104,21 @@ See the [examples](examples) directory.
## How To Release New Versions

- perform a regular Maven release:
```
```shell
$ ./mvnw release:prepare release:perform
```
- update and commit the CHANGELOG.md file
```
```shell
$ git add CHANGELOG.md
$ git commit -m 'update changelog'
```
- push the new tag and the master branch:
```
```shell
$ git push origin RELEASE_TAG
$ git push origin master
```
- build and push the Docker images:
```
```shell
$ git checkout RELEASE_TAG
$ ./mvnw -f docker-images clean package -Pdocker
$ ./docker-images/push.sh RELEASE_TAG
Expand All @@ -129,7 +129,7 @@ See the [examples](examples) directory.
https://repo.maven.apache.org/maven2/com/walmartlabs/concord/parent/RELEASE_TAG
```
- once the sync is complete, push the `latest` Docker images:
```
```shell
$ ./docker-images/push.sh latest
```

Expand Down