Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ src/
├── assets/ # Images and static assets
├── components/ # Custom Astro components
├── content/docs/ # Documentation pages (Markdown/MDX)
│ ├── usage/ # Getting started, configuration, plugins
│ ├── usage/ # Getting started, configuration, running semantic-release
│ ├── foundation/ # Concepts, constraints, and mental models of semantic-release
│ ├── extending/ # Plugin and shareable configuration lists
│ ├── recipes/ # CI configurations, git services, workflows
│ ├── support/ # FAQ, troubleshooting, version requirements
Expand All @@ -76,4 +77,4 @@ To contribute to the docs:

## License

This project is part of the [semantic-release](https://github.com/semantic-release/semantic-release) organization.
This project is part of the [semantic-release](https://github.com/semantic-release) organization.
5 changes: 0 additions & 5 deletions src/content/docs/recipes/git-hosted-services/index.md

This file was deleted.

13 changes: 13 additions & 0 deletions src/content/docs/recipes/git-hosted-services/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: "Git hosted services"
---

import { CardGrid, LinkCard } from "@astrojs/starlight/components";

<CardGrid>
<LinkCard
title="Git authentication with SSH keys"
href="/recipes/git-hosted-services/git-auth-ssh-keys/"
description="See how to configure Git authentication with SSH keys."
/>
</CardGrid>
7 changes: 0 additions & 7 deletions src/content/docs/recipes/release-workflow/index.md

This file was deleted.

23 changes: 23 additions & 0 deletions src/content/docs/recipes/release-workflow/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: "Release Workflow"
---

import { CardGrid, LinkCard } from "@astrojs/starlight/components";

<CardGrid>
<LinkCard
title="Publishing on distribution channels"
href="/recipes/release-workflow/distribution-channels/"
description="See how to configure semantic-release to publish on distribution channels."
/>
<LinkCard
title="Publishing maintenance releases"
href="/recipes/release-workflow/maintenance-releases/"
description="See how to configure semantic-release to publish maintenance releases."
/>
<LinkCard
title="Publishing pre-releases"
href="/recipes/release-workflow/pre-releases/"
description="See how to configure semantic-release to publish pre-releases."
/>
</CardGrid>
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
"~/*": ["./src/*"]
}
}
}
Loading