diff --git a/.github/ISSUE_TEMPLATE/dev_release_minor_version.md b/.github/ISSUE_TEMPLATE/dev_release_minor_version.md index 020fd3546..ad40bec6a 100644 --- a/.github/ISSUE_TEMPLATE/dev_release_minor_version.md +++ b/.github/ISSUE_TEMPLATE/dev_release_minor_version.md @@ -31,6 +31,7 @@ On the release branch: - [ ] Upload all binaries to: - [ ] GitHub release - [ ] https://dl.gogs.io (also upload `checksum_sha256.txt`) +- [ ] Update content of [Install from binary](https://gogs.io/docs/installation/install_from_binary). ## After release diff --git a/.github/ISSUE_TEMPLATE/dev_release_patch_version.md b/.github/ISSUE_TEMPLATE/dev_release_patch_version.md index 88b78a5c0..8c299a7d1 100644 --- a/.github/ISSUE_TEMPLATE/dev_release_patch_version.md +++ b/.github/ISSUE_TEMPLATE/dev_release_patch_version.md @@ -21,9 +21,9 @@ On the release branch: - [ ] Wait for GitHub Actions to complete and no failed jobs. - [ ] Publish a new [GitHub release](https://github.com/gogs/gogs/releases) with entries from [CHANGELOG](https://github.com/gogs/gogs/blob/main/CHANGELOG.md) for the current patch release and all previous releases with same minor version. **Make sure the tag is created on the release branch**. - [ ] Update all previous GitHub releases with same minor version with the warning: - ``` - **ℹ️ Heads up! There is a new patch release [0.12.1](https://github.com/gogs/gogs/releases/tag/v0.12.1) available, we recommend directly installing or upgrading to that version.** - ``` + ``` + **ℹ️ Heads up! There is a new patch release [0.12.1](https://github.com/gogs/gogs/releases/tag/v0.12.1) available, we recommend directly installing or upgrading to that version.** + ``` - [ ] Wait for a new image tag for the current release to be created automatically on both [Docker Hub](https://hub.docker.com/r/gogs/gogs/tags) and [GitHub Container registry](https://github.com/gogs/gogs/pkgs/container/gogs). - [ ] Update Docker image tag for the minor release `.`, e.g. `0.12` on both [Docker Hub](https://hub.docker.com/r/gogs/gogs/tags) and [GitHub Container registry](https://github.com/gogs/gogs/pkgs/container/gogs). - [ ] Compile and pack binaries (all prefixed with `gogs_.._`, e.g. `gogs_0.12.0_`): @@ -35,6 +35,7 @@ On the release branch: - [ ] Upload all binaries to: - [ ] GitHub release - [ ] https://dl.gogs.io (also upload `checksum_sha256.txt`) +- [ ] Update content of [Install from binary](https://gogs.io/docs/installation/install_from_binary). ## After release diff --git a/docs/dev/release_new_version.md b/docs/dev/release_new_version.md index aa9d0093d..63b212c15 100644 --- a/docs/dev/release_new_version.md +++ b/docs/dev/release_new_version.md @@ -2,16 +2,8 @@ ## Release a minor version -To release a new minor version, create a new GitHub issue with following attributes: - -1. Title: `Release ..0` -1. Label: [📸 release](https://github.com/gogs/gogs/labels/%F0%9F%93%B8%20release) -1. Template: [Dev: Release a minor version](https://github.com/gogs/gogs/issues/new/choose) +To release a new minor version, use the GitHub issue template [Dev: Release a minor version](https://github.com/gogs/gogs/issues/new?title=Release+..0&labels=%F0%9F%93%B8%20release&template=dev_release_minor_version.md). ## Release a patch version -To release a new patch version, create a new GitHub issue with following attributes: - -1. Title: `Release ..` -1. Label: [📸 release](https://github.com/gogs/gogs/labels/%F0%9F%93%B8%20release) -1. Template: [Dev: Release a patch version](https://github.com/gogs/gogs/issues/new/choose) +To release a new patch version, use the GitHub issue template [Dev: Release a patch version](https://github.com/gogs/gogs/issues/new?title=Release+..&labels=%F0%9F%93%B8%20release&template=dev_release_patch_version.md).