Skip to content

Commit 3b44748

Browse files
committed
Website: Update release process to check automated Dockerhub pushes
1 parent cbf161e commit 3b44748

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

website/docs/appendix/release-process.mdx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,9 @@ After pushing the tag, verify:
354354
1. **Docker images are built and pushed**
355355

356356
```bash
357-
# Verify multi-arch images are available
357+
# Verify multi-arch images are available for both vMAJOR.MINOR.PATCH and vMAJOR.MINOR
358358
make release-docker-verify TAG=v1.5.0
359+
make release-docker-verify TAG=v1.5
359360
```
360361

361362
<!-- prettier-ignore-start -->
@@ -634,6 +635,15 @@ git push origin :refs/tags/v1.5.0
634635
# Then recreate tag
635636
```
636637

638+
:::important Verify `vMAJOR.MINOR` Docker tags
639+
640+
If tag is recreated that looks like a valid semver, it will trigger a rebuild
641+
and push of the Docker images for that tag. For example, recreating tag `v1.5.0`
642+
will initiate a Docker build that will be pushed to Dockerhub as both `v1.5.0`
643+
and `v1.5`. As long as historical tags aren't recreated this shouldn't be a
644+
problem, but if the need arises to recreate tags, it's worth verifying that
645+
related images aren't adversely affected.
646+
637647
### CI Pipeline Issues
638648

639649
- Check GitHub Actions status page

0 commit comments

Comments
 (0)