We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My steps are still getting executed even if the tag doesn't starts with require
require
Trigger is only on git tag events.
My config:
--- pipeline: propensity-base-build: image: plugins/ecr repo: image-repo context: ./ dockerfile: ./commons/Dockerfile.base tags: - propensity-base when: tag: require* propensity-build: image: plugins/ecr repo: image-repo context: ./ dockerfile: ./commons/Dockerfile tags: - ${DRONE_COMMIT_SHA:0:8} - propensity-${DRONE_TAG} - latest
The text was updated successfully, but these errors were encountered:
Not as documented. I will update the docs, meanwhile you can try matching on the ref
ref
pipeline: step1: when: event: push ref: [ refs/heads/feature/*, refs/tags/* ] event: [ push, tag ]
as per
https://discourse.drone.io/t/execute-a-build-step-only-when-a-feature-branch-is-tagged-with-a-specific-pattern/1237/3
Sorry, something went wrong.
when
This should be solved in the meantime.
No branches or pull requests
My steps are still getting executed even if the tag doesn't starts with
require
Trigger is only on git tag events.
My config:
The text was updated successfully, but these errors were encountered: