Deploy feature pipelines in GitHub Actions.
Docs: https://docs.chalk.ai/docs/github-actions
CLI Step: https://github.com/chalk-ai/cli-action
Deploy Step: https://github.com/chalk-ai/deploy-action
Install the Chalk CLI in a GitHub Action.
- uses: chalk-ai/cli-action@v2
with:
client-id: ${{secrets.CHALK_CLIENT_ID}}
client-secret: ${{secrets.CHALK_CLIENT_SECRET}}Docs: https://docs.chalk.ai/docs/github-actions
Step: https://github.com/chalk-ai/cli-action
Deploy to Chalk (either as a preview deployment or to production).
- uses: chalk-ai/deploy-action@v2
with:
client-id: ${{secrets.CHALK_CLIENT_ID}}
client-secret: ${{secrets.CHALK_CLIENT_SECRET}}
await: trueDocs: https://docs.chalk.ai/docs/github-actions
Step: https://github.com/chalk-ai/deploy-action
Set up preview deployments for all PRs.
- uses: chalk-ai/deploy-action@v2
with:
client-id: ${{secrets.CHALK_CLIENT_ID}}
client-secret: ${{secrets.CHALK_CLIENT_SECRET}}
await: true
no-promote: true