Closed d3vhound closed 4 years ago
Can you see whether your tag has been pushed successfully ("Releases" tab on GitHub)?
I am also seeing this. My first release was fine, but I cannot get any other releases to happen. The tags are created correctly, but release: false
is always the case now.
Please check the following:
v*
and it's pushed correctly.If this doesn't help: The release
value is set to ${{ startsWith(github.ref, 'refs/tags/v') }}
in the README example, so this would indicate that the actual ref
is different. Could you try logging the ref
and checking if/why it doesn't start with refs/tags/v
?
There was the problem. I specified branches for push
, which begins ignoring tag pushes. I had to explicitly add those.
push:
tags:
- v*
That solved my issue. Perhaps @d3vhound has a similar issue.
Followed the docs and copied your workfile code and release commit workflow. Still getting
release: false
for some reason.