@eleventheye/asui 2.14.1 → 2.14.2
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/publish.yml +6 -1
- package/CHANGELOG.md +2 -0
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ jobs:
|
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
environment: npm-publish
|
|
12
12
|
permissions:
|
|
13
|
-
contents:
|
|
13
|
+
contents: write # Required to create GitHub releases
|
|
14
14
|
id-token: write # Required for OIDC authentication with NPM
|
|
15
15
|
|
|
16
16
|
steps:
|
|
@@ -31,3 +31,8 @@ jobs:
|
|
|
31
31
|
|
|
32
32
|
- name: Publish to NPM
|
|
33
33
|
run: npm publish --access public
|
|
34
|
+
|
|
35
|
+
- name: Create GitHub Release
|
|
36
|
+
run: gh release create "$GITHUB_REF_NAME" --generate-notes --title "$GITHUB_REF_NAME" --verify-tag
|
|
37
|
+
env:
|
|
38
|
+
GH_TOKEN: ${{ github.token }}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.14.2](https://github.com/Andrey11/asui/compare/v2.14.1...v2.14.2) (2026-05-26)
|
|
6
|
+
|
|
5
7
|
### [2.14.1](https://github.com/Andrey11/asui/compare/v2.14.0...v2.14.1) (2026-05-26)
|
|
6
8
|
|
|
7
9
|
## [2.14.0](https://github.com/Andrey11/asui/compare/v2.13.4...v2.14.0) (2026-05-26)
|