Github
Learn how to set up Github Actions so publishing your data science work becomes automatic!!
Prerequisites
How to publish to Kyso with Git Actions
name: Kyso Push
on:
push:
branches:
- main
jobs:
Kyso-Push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: echo ${{secrets.KYSO_TOKEN}}
- run: npm install -g kyso
- run: kyso login --kysoInstallUrl https://kyso.io --provider kyso --username kyle@kyso.io --token ${{secrets.KYSO_TOKEN}}
- run: kyso pushExecuting the CI/CD Pipeline
Maintaining a QA process with Pull Requests
Publishing only when a PR is merged into the main branch
Last updated

