37 lines
905 B
Markdown
37 lines
905 B
Markdown
|
---
|
||
|
slug: /1201/ci-cd-platform
|
||
|
displayed_sidebar: europaSidebar
|
||
|
---
|
||
|
|
||
|
# From local dev to CI/CD platform
|
||
|
|
||
|
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
|
||
|
|
||
|
<Tabs defaultValue="github-actions"
|
||
|
groupId="ci-cd-platform"
|
||
|
values={[
|
||
|
{label: 'GitHub Actions', value: 'github-actions'},
|
||
|
{label: 'CircleCI', value: 'circleci'},
|
||
|
{label: 'GitLab', value: 'gitlab'},
|
||
|
]}>
|
||
|
|
||
|
<TabItem value="github-actions">
|
||
|
|
||
|
Since Dagger early access required a GitHub account, GitHub Actions seems like a reasonable starting point.
|
||
|
|
||
|
</TabItem>
|
||
|
|
||
|
<TabItem value="circleci">
|
||
|
|
||
|
If you would like us to document this CI/CD platform next, mention it here: [dagger#1677](https://github.com/dagger/dagger/discussions/1677)
|
||
|
|
||
|
</TabItem>
|
||
|
|
||
|
<TabItem value="gitlab">
|
||
|
|
||
|
If you would like us to document this CI/CD platform next, mention it here: [dagger#1677](https://github.com/dagger/dagger/discussions/1677)
|
||
|
|
||
|
</TabItem>
|
||
|
|
||
|
</Tabs>
|