f2f2f7c38a
So that it's easy for anyone to jump to the new docs that we are currently working on, and intend to replace the existing docs with. While I would have preferred to link to the local dev page, it's still stuck in the PR state, currently blocked on another PR: https://github.com/dagger/dagger/pull/1586 Also added a link to the pre-Europa docs, so that it's easy to go back. While at it, drop "Sidebar" from the name of sidebars, and replace tutorial with a more descriptive name. Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
37 lines
898 B
Markdown
37 lines
898 B
Markdown
---
|
|
slug: /1201/ci-cd-platform
|
|
displayed_sidebar: europa
|
|
---
|
|
|
|
# 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>
|