-
-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Publish Docker tags with semver #1628
Comments
We used to publish tagged versions. E.g. see 0.15.1-alpine. Currently, the pipeline seems to be broken. We listen on releases in the Docker pipeline (see here), but there are no release builds at the moment. I didn't find the time to look into it, but if you know how to fix it, a pull request would be greatly appreciated. We tried to fix it in #1568 @eread fyi |
We use release-plz, so our process is a bit different: Rust release binaries get automatically created; the problem is, that it doesn't trigger the Docker build on Here's the release-plz pipeline: @marcoieni, maybe you came across this issue before? |
No, I haven't. Couldn't you build the docker image after you build the binary (in the same workflow file) |
@marcoieni @bdovaz @mre This commit was added to the repo: a94a712, but there hasn't been a release since then to see if it makes the difference. |
Oh right, let's release a new version then to see if it works. |
The 0.18.1 has been released and I see that it still doesn't have the tags right: |
Didn't work. It only built I triggered this Docker workflow run manually with the The first attempt failed, because the release binaries didn't exist. So I see two more required changes:
I've created #1631 to try and fix those issues. |
For example, alpine tags are published in the format:
sha-7c4b132-alpine
.This makes it impossible to make it work with renovate.
Why is it not published in semver format (like on github releases)? For example:
0.18.0-alpine
.Thanks.
The text was updated successfully, but these errors were encountered: