diff --git a/astro.config.js b/astro.config.js index ca4035b..0ea2c66 100644 --- a/astro.config.js +++ b/astro.config.js @@ -48,8 +48,8 @@ export default defineConfig({ items: [ { slug: "usage/getting-started" }, { slug: "usage/installation" }, - { slug: "usage/ci-configuration" }, { slug: "usage/configuration" }, + { slug: "usage/ci-configuration" }, { slug: "usage/plugins" }, { slug: "usage/workflow-configuration" }, { slug: "usage/shareable-configurations" }, diff --git a/src/content/docs/usage/getting-started.md b/src/content/docs/usage/getting-started.md deleted file mode 100644 index 0b9b97a..0000000 --- a/src/content/docs/usage/getting-started.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "Getting started" ---- - -In order to use **semantic-release** you must follow these steps: - -1. [Install](installation.md#installation) **semantic-release** in your project -2. Configure your Continuous Integration service to [run **semantic-release**](ci-configuration.md#run-semantic-release-only-after-all-tests-succeeded) -3. Configure your Git repository and package manager repository [authentication](ci-configuration.md#authentication) in your Continuous Integration service -4. Configure **semantic-release** [options and plugins](configuration.md#configuration) diff --git a/src/content/docs/usage/getting-started.mdx b/src/content/docs/usage/getting-started.mdx new file mode 100644 index 0000000..c660a02 --- /dev/null +++ b/src/content/docs/usage/getting-started.mdx @@ -0,0 +1,16 @@ +--- +title: "Getting started" +--- + +import { Steps } from "@astrojs/starlight/components"; + +In order to use **semantic-release** you must follow these steps: + + + +1. [Install](/usage/installation) **semantic-release** in your project +2. Configure **semantic-release** [options and plugins](/usage/configuration) +3. Configure your Continuous Integration service to [run **semantic-release**](/usage/ci-configuration#run-semantic-release-only-after-all-tests-succeeded) +4. Configure your Git repository and package manager repository [authentication](/usage/ci-configuration#authentication) in your Continuous Integration service + +