@kirixvelu/second 2.3.1 → 2.3.3

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,21 +1,20 @@
1
- name: Release
1
+ name: Publish Release
2
2
  on:
3
3
  push:
4
- branches:
5
- - main
6
-
4
+ tags:
5
+ - "v*"
7
6
  jobs:
8
7
  build:
9
- name: Release
10
8
  runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
+ pull-requests: write
12
+ issues: write
11
13
  steps:
12
- - name: Checkout
13
- uses: actions/checkout@v2
14
+ - uses: actions/checkout@v3
15
+ - name: Create a Release
16
+ uses: elgohr/Github-Release-Action@v5
17
+ env:
18
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14
19
  with:
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 }}
20
+ title: MyReleaseMessage
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ #### 2.3.3 (2026-02-08)
2
+
3
+ #### 2.3.2 (2026-02-08)
4
+
1
5
  #### 2.3.1 (2026-02-08)
2
6
 
3
7
  ### 2.3.0 (2026-02-08)
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
1
  # second
2
2
 
3
3
  some content
4
+
5
+ revised action
6
+
7
+ add permission
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kirixvelu/second",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {