@aigne/doc-smith 0.8.10 → 0.8.11-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/create-release-pr.yaml +21 -0
- package/.github/workflows/release.yml +3 -7
- package/CHANGELOG.md +7 -0
- package/README.md +3 -0
- package/RELEASE.md +1 -2
- package/package.json +1 -1
- package/release-please-config.json +11 -4
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Create Release PR
|
|
2
|
+
|
|
3
|
+
env:
|
|
4
|
+
NODE_OPTIONS: "--max_old_space_size=6144"
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: write
|
|
11
|
+
pull-requests: write
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
release:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- uses: AIGNE-io/release-please-action@v4.3.0
|
|
18
|
+
id: release
|
|
19
|
+
with:
|
|
20
|
+
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
|
|
21
|
+
release-stable: true
|
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
release-please:
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
|
-
- uses:
|
|
16
|
+
- uses: AIGNE-io/release-please-action@v4.3.0
|
|
17
17
|
id: release
|
|
18
18
|
with:
|
|
19
19
|
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
|
|
@@ -45,9 +45,5 @@ jobs:
|
|
|
45
45
|
if: ${{ steps.release.outputs.release_created }}
|
|
46
46
|
run: |
|
|
47
47
|
npm config set '//registry.npmjs.org/:_authToken' "${{ secrets.NPM_TOKEN }}"
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
else
|
|
51
|
-
pnpm publish --access public --no-git-checks
|
|
52
|
-
fi
|
|
53
|
-
|
|
48
|
+
TAG=$(node -p "require(\"./package.json\").version.includes(\"beta\") ? \"beta\" : \"latest\"")
|
|
49
|
+
pnpm publish --access public --no-git-checks --tag $TAG || true
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.8.11-beta](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.8.10...v0.8.11-beta) (2025-09-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update readme docs ([#130](https://github.com/AIGNE-io/aigne-doc-smith/issues/130)) ([16b5acf](https://github.com/AIGNE-io/aigne-doc-smith/commit/16b5acf2398ee7b242c5f3229f2bcf2de2fad7d0))
|
|
9
|
+
|
|
3
10
|
## [0.8.10](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.8.10-beta.3...v0.8.10) (2025-09-20)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
package/RELEASE.md
CHANGED
|
@@ -5,6 +5,5 @@ Merge that PR when appropriate.
|
|
|
5
5
|
|
|
6
6
|
### Release a prod version
|
|
7
7
|
|
|
8
|
-
When you want
|
|
9
|
-
release-please will update the PR to release to a specific version (without beta).
|
|
8
|
+
When you want publish a prod version, manually execute the GitHub Action 'Create Release PR' to create a release PR for the prod version.
|
|
10
9
|
Merge that PR when appropriate.
|
package/package.json
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
|
|
3
|
+
"release-type": "node",
|
|
4
|
+
"prerelease": true,
|
|
5
|
+
"versioning": "prerelease",
|
|
3
6
|
"packages": {
|
|
4
7
|
".": {
|
|
5
|
-
"release-type": "node",
|
|
6
8
|
"bump-minor-pre-major": true,
|
|
7
9
|
"bump-patch-for-minor-pre-major": true,
|
|
8
10
|
"include-component-in-tag": false,
|
|
9
|
-
"prerelease-type": "beta"
|
|
10
|
-
"versioning": "prerelease"
|
|
11
|
+
"prerelease-type": "beta"
|
|
11
12
|
}
|
|
12
|
-
}
|
|
13
|
+
},
|
|
14
|
+
"plugins": [
|
|
15
|
+
{
|
|
16
|
+
"type": "node-workspace",
|
|
17
|
+
"updatePeerDependencies": true
|
|
18
|
+
}
|
|
19
|
+
]
|
|
13
20
|
}
|