apisix-docker
apisix-docker copied to clipboard
Avoid affecting latest image when pushing a LTS image
Currently, triggering an image push action in the CI will always push the image as the latest image if the type of the image is Debian.
This will bring us trouble if we are going to release an LTS image. We need to have a mechanism to distinguish these two kinds of images. For example, we can check the patch version number when pushing the latest image.
So, we need to know which versions are LTS in this repo?
We don't need to know LTS. We just need to filter out all the patch releases.
We don't need to know LTS. We just need to filter out all the patch releases.
Got it. Distinguish the patch part in the semantic version?
Yes
good job !
@Hazel6869 Would you like to do this? Thanks!