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:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.