Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit 86215ca

Browse files
author
Philip de Nier
committed
Improve the release doc
1 parent c81d7aa commit 86215ca

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/release.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ This describes the steps for making a release.
1313
* Check the [runner versions](https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners) (e.g. `windows-2019` and `macos-13`) in the [release.yml](../.github/workflows/release.yml) workflow file are still available
1414
* Select the oldest macOS version available to help with compatibility
1515
* Run the [Release](https://github.com/bbc/bmx/actions/workflows/release.yml) workflow in GitHub Actions using the release branch to check it succeeds
16-
* Create a temporary tag using the steps from [Create a Release Tag](#create-a-release-tag) and then delete the tag once the workflow succeeds using the following commands:
16+
* On the release branch, create a temporary tag and then delete the tag once the workflow succeeds:
17+
18+
```bash
19+
export BMX_VERSION=<major version>.<minor version>
20+
git tag -a v${BMX_VERSION} -m "Version ${BMX_VERSION}"
21+
git push origin v${BMX_VERSION}
22+
```
1723

1824
```bash
1925
git push --delete origin v${BMX_VERSION}

0 commit comments

Comments
 (0)