Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from lorenzolewis/feat/changeset
Browse files Browse the repository at this point in the history
Add Changeset
  • Loading branch information
lorenzolewis authored May 19, 2024
2 parents 5cd2bcf + 0b6b6c3 commit 8f14e34
Show file tree
Hide file tree
Showing 6 changed files with 1,697 additions and 21 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
5 changes: 5 additions & 0 deletions .changeset/brown-pears-knock.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"starlight-multi-sidebar": patch
---

Add changeset and fix package name
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release

on:
push:
branches:
- main

concurrency: ${{github.workflow}}-${{github.ref}}

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js 20
uses: actions/setup-node@v3

- name: Install Dependencies
run: pnpm i

- name: Create Release Pull Request
uses: changesets/actions@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "dimensional-doppler",
"name": "starlight-multi-sidebar",
"type": "module",
"version": "0.0.1",
"scripts": {
Expand All @@ -10,10 +10,12 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.6.0",
"@astrojs/starlight": "^0.22.2",
"@changesets/cli": "^2.27.2",
"astro": "^4.3.5",
"sharp": "^0.32.5",
"@astrojs/check": "^0.6.0",
"typescript": "^5.4.5"
}
}
},
"packageManager": "pnpm@9.1.1"
}
Loading

0 comments on commit 8f14e34

Please sign in to comment.