@socialgouv/fiches-vdd-types 2.1593.0 → 2.1595.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.
- package/.github/workflows/fetch.yml +3 -1
- package/CHANGELOG.md +20 -0
- package/package.json +1 -1
|
@@ -71,12 +71,12 @@ jobs:
|
|
|
71
71
|
message: "feat(data): ${{ steps.metadata.outputs.now }} update"
|
|
72
72
|
|
|
73
73
|
- name: Semantic Release
|
|
74
|
+
id: semantic
|
|
74
75
|
uses: cycjimmy/semantic-release-action@ba330626c4750c19d8299de843f05c7aa5574f62
|
|
75
76
|
with:
|
|
76
77
|
semantic_version: 25.0.1
|
|
77
78
|
extra_plugins: |
|
|
78
79
|
@semantic-release/changelog@6.0.3
|
|
79
|
-
@semantic-release/exec@7.1.0
|
|
80
80
|
@semantic-release/git@10.0.1
|
|
81
81
|
env:
|
|
82
82
|
GIT_AUTHOR_EMAIL: ${{ secrets.SOCIALGROOVYBOT_EMAIL }}
|
|
@@ -86,9 +86,11 @@ jobs:
|
|
|
86
86
|
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
|
|
87
87
|
|
|
88
88
|
- name: Publish to NPM
|
|
89
|
+
if: ${{ steps.semantic.outputs.new_release_published == 'true' }}
|
|
89
90
|
run: npm publish
|
|
90
91
|
|
|
91
92
|
- name: Publish types to NPM
|
|
93
|
+
if: ${{ steps.semantic.outputs.new_release_published == 'true' }}
|
|
92
94
|
run: |
|
|
93
95
|
rm -rf data
|
|
94
96
|
sed -i "s/@socialgouv\/fiches-vdd/@socialgouv\/fiches-vdd-types/g" package.json
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [2.1595.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1594.0...v2.1595.0) (2025-12-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* ne pas publier sur npm si pas de nouvelle version ([4ffa552](https://github.com/SocialGouv/fiches-vdd/commit/4ffa5524a5a5452c3b58a89e4e8593d4e05be628))
|
|
7
|
+
* remove useless semantic version extra plugin ([8da0899](https://github.com/SocialGouv/fiches-vdd/commit/8da089964bdc5a7227af84121ecd9098aead6c07))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **data:** 20251218_1835 update ([3dcb417](https://github.com/SocialGouv/fiches-vdd/commit/3dcb4174db1afb03c70bb419170b460869b92c94))
|
|
13
|
+
|
|
14
|
+
# [2.1594.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1593.0...v2.1594.0) (2025-12-17)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **data:** 20251217_1835 update ([1f19ee7](https://github.com/SocialGouv/fiches-vdd/commit/1f19ee75e98111e0f3ac3bf6b57f8e5a7c665331))
|
|
20
|
+
|
|
1
21
|
# [2.1593.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1592.0...v2.1593.0) (2025-12-16)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED