temp-helper-linqjs 0.2.9 → 0.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.
@@ -3,7 +3,10 @@
3
3
 
4
4
  name: Node.js Package
5
5
 
6
- on: [push]
6
+ on:
7
+ push:
8
+ tags:
9
+ - v*
7
10
 
8
11
  jobs:
9
12
  publish-npm:
@@ -14,12 +17,13 @@ jobs:
14
17
  - uses: actions/checkout@v4
15
18
  - run: git config --global user.email "wymoon2690@gmail.com"
16
19
  - run: git config --global user.name "GitHub Actions"
20
+ - run: echo ${{ github.ref_name }}
17
21
  - uses: actions/setup-node@v4
18
22
  with:
19
23
  node-version: 20
20
24
  registry-url: https://registry.npmjs.org/
21
25
  - run: npm test
22
- - run: npm version patch
26
+ - run: npm version ${{ github.ref_name }} --no-git-tag-version
23
27
  - run: npm publish
24
28
  env:
25
29
  NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "temp-helper-linqjs",
3
- "version": "0.2.9",
3
+ "version": "0.3.0",
4
4
  "description": "Array 프로토타입 확장 - LINQ 스타일 메서드",
5
5
  "main": "linq-module.js",
6
6
  "license": "EULA",