react-hook-form-rules 1.5.7 → 1.5.8
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.
- package/.github/workflows/release.yml +3 -4
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
|
@@ -30,13 +30,15 @@ jobs:
|
|
|
30
30
|
uses: actions/setup-node@v4
|
|
31
31
|
with:
|
|
32
32
|
node-version: 20
|
|
33
|
-
registry-url: "https://registry.npmjs.org/"
|
|
34
33
|
|
|
35
34
|
- name: Install dependencies
|
|
36
35
|
run: npm ci
|
|
37
36
|
|
|
38
37
|
- name: Authenticate with npm
|
|
39
38
|
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
|
|
39
|
+
|
|
40
|
+
- name: Authenticate with GitHub Packages
|
|
41
|
+
run: echo "@chopperqt:registry=https://npm.pkg.github.com/" >> ~/.npmrc && echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PACKAGES_TOKEN }}" >> ~/.npmrc
|
|
40
42
|
|
|
41
43
|
- name: Check .npmrc
|
|
42
44
|
run: npm run check-npmrc
|
|
@@ -46,9 +48,6 @@ jobs:
|
|
|
46
48
|
echo "NPM_TOKEN=${{ secrets.NPM_TOKEN }}"
|
|
47
49
|
echo "GH_PACKAGES_TOKEN=${{ secrets.GH_PACKAGES_TOKEN }}"
|
|
48
50
|
echo $NPM_TOKEN | wc -c
|
|
49
|
-
|
|
50
|
-
- name: Authenticate with GitHub Packages
|
|
51
|
-
run: echo "@chopperqt:registry=https://npm.pkg.github.com/" >> ~/.npmrc && echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PACKAGES_TOKEN }}" >> ~/.npmrc
|
|
52
51
|
|
|
53
52
|
- name: Run semantic-release
|
|
54
53
|
run: npx semantic-release
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.5.8](https://github.com/chopperqt/react-hook-form-rules/compare/v1.5.7...v1.5.8) (2025-03-15)
|
|
2
|
+
|
|
3
|
+
### 🔥 Code Refactoring
|
|
4
|
+
|
|
5
|
+
* незначительные правки ([d388b0a](https://github.com/chopperqt/react-hook-form-rules/commit/d388b0a808884c29096c23eb13be16420117c100))
|
|
6
|
+
|
|
1
7
|
## [1.5.7](https://github.com/chopperqt/react-hook-form-rules/compare/v1.5.6...v1.5.7) (2025-03-15)
|
|
2
8
|
|
|
3
9
|
### 🔥 Code Refactoring
|