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
* Run generate before prerelease
Signed-off-by: Fabian von Feilitzsch <[email protected]>
* Update website/content/en/docs/contribution-guidelines/releasing.md
Co-authored-by: Jesus Rodriguez <[email protected]>
Signed-off-by: Fabian von Feilitzsch <[email protected]>
Co-authored-by: Jesus Rodriguez <[email protected]>
Copy file name to clipboardExpand all lines: website/content/en/docs/contribution-guidelines/releasing.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,15 +101,17 @@ make prerelease
101
101
102
102
The following changes should be present:
103
103
104
+
-`Makefile`: IMAGE_VERSION should be modified to the upcoming release tag. (This variable ensures sampleprojects have been tagged correctly prior to the release commit.)
104
105
-`changelog/generated/v1.3.0.md`: commit changes (created by changelog generation).
105
106
-`changelog/fragments/*`: commit deleted fragment files (deleted by changelog generation).
106
107
-`website/content/en/docs/upgrading-sdk-version/v1.3.0.md`: commit changes (created by changelog generation).
107
108
-`website/config.toml`: commit changes (modified by release script).
109
+
-`testdata/*`: Generated sample code.
108
110
109
111
Commit these changes and push to your remote (assuming your remote is named `origin`):
110
112
111
113
```sh
112
-
git add --all
114
+
git add Makefile changelog website testdata
113
115
git commit -m "Release $RELEASE_VERSION"
114
116
git push -u origin release-$RELEASE_VERSION
115
117
```
@@ -210,9 +212,6 @@ following commands from the root of the project.
210
212
sed -i -E 's/(IMAGE_VERSION = ).+/\1v1\.3\.1/g' Makefile
211
213
# Run the pre-release `make` target:
212
214
make prerelease
213
-
# Regenerate testdata (samples).
214
-
# NOTE: The sanity test will fail but scaffolding should complete.
215
-
make test-sanity
216
215
```
217
216
218
217
All of the following changes should be present (and no others).
@@ -225,7 +224,7 @@ All of the following changes should be present (and no others).
225
224
Commit these changes and push these changes **to your fork**:
0 commit comments