-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitbucket-pipelines.yml
More file actions
23 lines (23 loc) · 891 Bytes
/
bitbucket-pipelines.yml
File metadata and controls
23 lines (23 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pipelines:
tags:
V.*:
- step:
name: Bulding of package
image: chocotechnologies/scripts:builder
trigger: automatic
script:
- ./build.sh --url="$PUBLISH_URL" --version="$BITBUCKET_TAG" --target=package
- step:
name: Building of an image
trigger: automatic
script:
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
- ./build.sh --version="$BITBUCKET_TAG" --target=image
- step:
name: Building of builder image
trigger: manual
script:
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
- ./build.sh --version="$BITBUCKET_TAG" --target=builder
options:
docker: true