Automate Bitbucket releases
Automatically release the UI Bakery app upon merging a pull request
Step 1. Enable Instance API
Step 2. Create pipeline:
image: atlassian/default-image:3
pipelines:
branches:
main:
- stage:
name: 'Deploy'
deployment: production
steps:
- step:
name: 'Pull main branch'
script:
- |
curl https://UI_BAKERY_INSTANCE/api/instance/app/APP_ID/pull?uib_branch=main \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer TOKEN"
- step:
name: 'Deployment to Production'
script:
- |
curl https://UI_BAKERY_INSTANCE/api/instance/app/APP_ID/release \
-X POST \
-d '{"version":"1.0.1", "prod": true, "staging": false, "description": "Automated release"}' \
-H "Content-Type: application/json" \
-H "Authorization: Bearer TOKEN"
Last updated
Was this helpful?