You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASING.md
+20-7Lines changed: 20 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,23 +4,36 @@ For version v0.x.y:
4
4
5
5
## Prerequisites
6
6
7
-
1. Update the `VERSION`, `VERSION_ID`, and `PRETTY_NAME` values in the `hook.yaml` file under `files -> "- path: etc/os-release"` to use `0.x.y`. This can be done with:
7
+
1. Update the `VERSION`, `VERSION_ID`, and `PRETTY_NAME` values in the `hook.yaml` file under `files -> "- path: etc/os-release"` to use `0.x.y`
8
8
9
-
```bash
10
-
make update-os-release NEW_VERSION=0.x.y
11
-
```
9
+
```bash
10
+
make update-os-release NEW_VERSION=0.x.y
11
+
```
12
12
13
13
1. Commit, push, PR, and merge the version changes
14
-
- `git commit -sm "Update version to v0.x.y" hook.yaml`
14
+
15
+
```bash
16
+
git commit -sm "Update version to v0.x.y" hook.yaml
17
+
```
15
18
16
19
## Release Process
17
20
18
21
1. Create the annotated tag
22
+
19
23
> NOTE: To use your GPG signature when pushing the tag, use `SIGN_TAG=1 ./contrib/tag-release.sh v0.x.y` instead
20
-
- `./contrib/tag-release.sh v0.x.y`
24
+
25
+
```bash
26
+
./contrib/tag-release.sh v0.x.y
27
+
```
28
+
21
29
1. Push the tag to the GitHub repository. This will automatically trigger a [Github Action](https://github.com/tinkerbell/hook/actions) to create a release.
30
+
22
31
> NOTE: `origin` should be the name of the remote pointing to `github.com/tinkerbell/boots`
0 commit comments