Skip to content

Commit 37aeba0

Browse files
NOTES: add FORK.md with release steps
Signed-off-by: Mathew Wicks <[email protected]>
1 parent 59626f8 commit 37aeba0

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

FORK.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Fork Information
2+
3+
## Releasing Steps
4+
5+
1. Take a copy of the upstream `knative-vX.Y.Z` tag and create a new __branch__ on this repo called `fork-X.Y.Z`
6+
2. Make any change on the `fork-X.Y.Z` branch, prepending the commit message with `FORK: `
7+
3. Use the GitHub interface to create a tag and release called `vX.Y.Z-deploykf.N`, where `N` is an incremental number starting from `0`
8+
4. On a local clone of that tag, run the following commands to build and push the images:
9+
10+
```bash
11+
#
12+
# WARNING: running this command will immediately push the images to the registry.
13+
# update the `--tags` flag, and ensure you have checked out the correct commit
14+
#
15+
export KO_DOCKER_REPO="ghcr.io/deploykf/knative-serving"
16+
ko resolve \
17+
--platform "linux/arm64,linux/amd64" \
18+
--sbom "none" \
19+
--tags "X.Y.Z-deploykf.N" \
20+
--base-import-paths \
21+
-Rf config/core/ \
22+
> /dev/null
23+
```

0 commit comments

Comments
 (0)