Skip to content

Commit fe4ea50

Browse files
authored
chore: add publish workflow (#38)
1 parent d66c8d7 commit fe4ea50

File tree

5 files changed

+612
-0
lines changed

5 files changed

+612
-0
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
id-token: write
10+
contents: write
11+
pull-requests: write
12+
packages: write
13+
14+
jobs:
15+
publish:
16+
if: github.repository_owner == 'bombshell-dev'
17+
uses: bombshell-dev/automation/.github/workflows/publish.yml@main
18+
secrets: inherit

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"author": "",
2525
"license": "ISC",
2626
"devDependencies": {
27+
"@changesets/cli": "^2.29.6",
2728
"@types/node": "^22.7.4",
2829
"cac": "^6.7.14",
2930
"citty": "^0.1.6",

0 commit comments

Comments
 (0)