react-hook-form-rules 1.4.3 → 1.5.1

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.
@@ -15,6 +15,10 @@ permissions:
15
15
  jobs:
16
16
  release:
17
17
  runs-on: ubuntu-latest
18
+ env:
19
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
21
+ GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}
18
22
 
19
23
  steps:
20
24
  - name: Checkout repository
@@ -41,13 +45,10 @@ jobs:
41
45
  run: |
42
46
  echo "NPM_TOKEN=${{ secrets.NPM_TOKEN }}"
43
47
  echo "GH_PACKAGES_TOKEN=${{ secrets.GH_PACKAGES_TOKEN }}"
48
+ echo $NPM_TOKEN | wc -c
44
49
 
45
50
  - name: Authenticate with GitHub Packages
46
51
  run: echo "@chopperqt:registry=https://npm.pkg.github.com/" >> ~/.npmrc && echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PACKAGES_TOKEN }}" >> ~/.npmrc
47
52
 
48
53
  - name: Run semantic-release
49
54
  run: npx semantic-release
50
- env:
51
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
53
- GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## [1.5.1](https://github.com/chopperqt/react-hook-form-rules/compare/v1.5.0...v1.5.1) (2025-03-15)
2
+
3
+ ### 🔥 Code Refactoring
4
+
5
+ * правки npmrc ([5f91200](https://github.com/chopperqt/react-hook-form-rules/commit/5f912005f638fcd7e79cd0f980a46747a013dbb8))
6
+
7
+ ## [1.5.0](https://github.com/chopperqt/react-hook-form-rules/compare/v1.4.3...v1.5.0) (2025-03-15)
8
+
9
+ ### 🆕 Features
10
+
11
+ * добавлена проверка токена ([7a2ad16](https://github.com/chopperqt/react-hook-form-rules/commit/7a2ad16d5521a8b773de35ccb89f66767fd27fb0))
12
+
13
+ ### 🔥 Code Refactoring
14
+
15
+ * env подняты выше ([799628d](https://github.com/chopperqt/react-hook-form-rules/commit/799628d43debdb03bcc958fd95d4b02a076164d5))
16
+ * добавлен .npmrc ([80cebac](https://github.com/chopperqt/react-hook-form-rules/commit/80cebac0b76cf5e30b12c8b908404f5d494b7b04))
17
+ * добавлен .npmrc ([607979c](https://github.com/chopperqt/react-hook-form-rules/commit/607979c3c63023dfcb2b883168f6d7b1f54cb0ce))
18
+ * исправление npmrc ([946c28d](https://github.com/chopperqt/react-hook-form-rules/commit/946c28d1b57ffe984aaa42d0d135ddf18c3e4260))
19
+
1
20
  ## [1.4.3](https://github.com/chopperqt/react-hook-form-rules/compare/v1.4.2...v1.4.3) (2025-03-15)
2
21
 
3
22
  ### 🔥 Code Refactoring
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-hook-form-rules",
3
- "version": "1.4.3",
3
+ "version": "1.5.1",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },