@kirixvelu/second 2.0.1 → 2.1.0

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.
@@ -0,0 +1,29 @@
1
+ on:
2
+ push:
3
+ # Sequence of patterns matched against refs/tags
4
+ tags:
5
+ - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
6
+
7
+ name: Create Release
8
+
9
+ jobs:
10
+ build:
11
+ name: Create Release
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v2
16
+ - name: Create Release
17
+ id: create_release
18
+ uses: actions/create-release@v1
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
21
+ with:
22
+ tag_name: ${{ github.ref }}
23
+ release_name: Release ${{ github.ref }}
24
+ body: |
25
+ Changes in this Release
26
+ - First Change
27
+ - Second Change
28
+ draft: false
29
+ prerelease: false
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ### 2.1.0 (2026-02-08)
2
+
3
+ ##### New Features
4
+
5
+ * new action ([4d1d8a10](https://github.com/kirixvelu/second/commit/4d1d8a1044630164e2d08c365069a2ff7afc06e7))
6
+ * add release action ([a25dbc95](https://github.com/kirixvelu/second/commit/a25dbc9525c3b82852c94532cbb9d9f84eb3f8e8))
7
+
1
8
  #### 2.0.1 (2026-02-08)
2
9
 
3
10
  ##### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kirixvelu/second",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {