Publish Dockerimage with versioned alpine tags?
As far as I can see there is only latest-alpine, but there is no 42-alpine tag
It looks like it should push it, from the ci.yml. I also see that there's no v43 tag either. @williamdes do you know why it haven't been built?
It looks like it should push it, from the ci.yml. I also see that there's no v43 tag either. @williamdes do you know why it haven't been built?
Well, it seems to have been skipped: https://github.com/SimonKagstrom/kcov/actions/runs/10064426641/job/27822055109 The condition on https://github.com/SimonKagstrom/kcov/blob/d8ca8d432f604a4addbfd9f288914e9882f415f8/.github/workflows/ci.yml#L155
Should be changed to add release tag refs
To mitigate this, can you click to manually dispatch a build for that tag ? Here is an example on my project:
I gave it a go @williamdes!
Unfortunately, the CI builds now fail due to other reasons (Homebrew versions on MacOS, unknown for me failures on the non-x86 Linux arches).
So you mean something like ${{ github.ref == 'refs/tags/XX' || ...? Not quite sure how to write that though.
I gave it a go @williamdes!
Unfortunately, the CI builds now fail due to other reasons (Homebrew versions on MacOS, unknown for me failures on the non-x86 Linux arches).
So you mean something like
${{ github.ref == 'refs/tags/XX' || ...? Not quite sure how to write that though.
Hi @SimonKagstrom
On a project I use if: startsWith(github.ref, 'refs/tags/production/')
So maybe you can try
- if: ${{ github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch' }}
+ if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' }}
Will you do a release in the following days ?
@williamdes not planning for a release right now. This branch has some changes to test your suggestion above! https://github.com/SimonKagstrom/kcov/tree/test-481-alpine-builds
@williamdes not planning for a release right now. This branch has some changes to test your suggestion above! https://github.com/SimonKagstrom/kcov/tree/test-481-alpine-builds
The .yml diff looks fine
No sure why build fails with __main__.py: error: unrecognized arguments: amd64 🤔
Yeah... My stamina went completely out when I got that error :-/