I have simple custom pipe:
https://bitbucket.org/itrust-dev/call-webhook-pipe/
Image is build and pushed to DockerHub and it is public available (`docker pull lapierre/call-webhook:1.0.0` works) .
My pipeline looks like this:
- step:
name: Deploy Dev
trigger: 'manual'
deployment: Test
clone:
enabled: false
script:
- VERSION=$(cat version.env)
- echo $VERSION
- FULL_URL="${WEB_HOOK_URL}?SERVICE_VERSION=${VERSION}"
- pipe: lapierre/call-webhook:1.0.0
variables:
ITRUST_WEBHOOK_URL: ${FULL_URL}
I got error from BitBucket: Configuration error It looks like you tried to use a pipe in your bitbucket-pipelines.yml that doesn’t exist. Check the name of the pipe and try again.
What I'm doing wrong?
There are 2 ways to refer to this pipe in other repositories. In your bitbucket-pipelines.yml file you can:
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.