convert-csv-to-json 2.3.0 → 2.5.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.
@@ -26,10 +26,13 @@ jobs:
26
26
  CI: true
27
27
 
28
28
  release:
29
+ needs: build
29
30
  name: release
30
31
  runs-on: ubuntu-latest
31
32
  steps:
32
33
  - uses: actions/checkout@v4
34
+ with:
35
+ token: ${{ secrets.ACTION_TOKEN }}
33
36
  - uses: fregante/setup-git-user@v2
34
37
  - name: Use Node.js 21.x
35
38
  uses: actions/setup-node@v4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "2.3.0",
3
+ "version": "2.5.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ set -e
2
3
  echo "Start Semantic Versioning release...";
3
4
  echo "Checking branch...";
4
5
  RELEASE_BRANCH="master";