Bitbucket
Learn how to setup CI pipelines so publishing your data science work becomes automatic!!
Prerequisites
How to publish to Kyso with Bitbucket CI Pipelines
image: node:18
pipelines:
branches:
main:
- step:
name: 'Publishing to Kyso'
trigger: 'automatic'
script:
- npm install -g kyso
- kyso login --kysoInstallUrl https://kyso.io --provider kyso --username [YOUR EMAIL] --token [YOUR ACCESS TOKEN]
- kyso pushExecuting the CI Pipeline

Maintaining a QA process with Pull Requests
GithubLast updated