@kirixvelu/second 2.1.0 → 2.3.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.
@@ -1,29 +1,21 @@
1
+ name: Release
1
2
  on:
2
3
  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
4
+ branches:
5
+ - main
8
6
 
9
7
  jobs:
10
8
  build:
11
- name: Create Release
9
+ name: Release
12
10
  runs-on: ubuntu-latest
13
11
  steps:
14
- - name: Checkout code
12
+ - name: Checkout
15
13
  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
14
  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
15
+ fetch-depth: 0
16
+ - name: Release
17
+ uses: justincy/github-action-npm-release@2.0.1
18
+ id: release
19
+ - name: Print release output
20
+ if: ${{ steps.release.outputs.released == 'true' }}
21
+ run: echo Release ID ${{ steps.release.outputs.release_id }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ### 2.3.0 (2026-02-08)
2
+
1
3
  ### 2.1.0 (2026-02-08)
2
4
 
3
5
  ##### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kirixvelu/second",
3
- "version": "2.1.0",
3
+ "version": "2.3.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {