Hello!
I have a pipeline where tag is created automatically via semantic-release package:
pipelines:
branches:
develop:
.......
master:
.......
- step:
name: create tag for deploy prod
image: node:19-buster-slim
script:
.....
- semantic-release
- git push origin --tags
tags:
v*:
.......
In my Repo and logs I see that tag was created, but pipeline didn't start.
Some logs:
semantic-release
[3:00:37 PM] [semantic-release] › ✔ Created tag v2.4.0
[3:00:37 PM] [semantic-release] › ✔ Published release 2.4.0 on default channel
git push origin --tags
Everything up-to-date
And in Bitbucket Repo I see it.
But when I create tag manually from console, tag pipeline trigger and works.
git tag v2.5.0
git push origin --tags
Any ideas?
I find fix. I've deleted package.json and everything start work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.