Skip to content

Commit

Permalink
Document the release process
Browse files Browse the repository at this point in the history
  • Loading branch information
reda-alaoui authored and gsmet committed Sep 13, 2022
1 parent 5e6a3c9 commit a9e0f55
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ fixes, documentation, examples... But first, read this page (including the small
- [Automatic incremental build](#automatic-incremental-build)
* [Special case `bom-descriptor-json`](#special-case--bom-descriptor-json-)
* [Usage by CI](#usage-by-ci)
* [Release](#release)
* [Documentation](#documentation)
+ [Building the documentation](#building-the-documentation)
+ [Referencing a new guide in the index](#referencing-a-new-guide-in-the-index)
Expand Down Expand Up @@ -502,6 +503,26 @@ CI is using a slightly different GIB config than locally:

For more details see the `Get GIB arguments` step in `.github/workflows/ci-actions-incremental.yml`.

## Release

To release version `x.y`, first update the version:

```shell
./update-version.sh "x.y"
```

Commit the changes then run:

```shell
./mvnw --settings .github/mvn-settings.xml \
-B \
-Prelease \
-DskipTests -DskipITs \
-Ddokka \
-Dgpg.skip \
clean deploy
```

## Documentation

The documentation is hosted in the [`docs` module](https://github.com/quarkusio/quarkus/tree/main/docs) of the main
Expand Down

0 comments on commit a9e0f55

Please sign in to comment.