minecraft-data 3.106.0 → 3.107.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/ci.yml
CHANGED
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
- id: publish
|
|
26
26
|
uses: JS-DevTools/npm-publish@v4
|
|
27
27
|
- name: Create Release
|
|
28
|
-
if: steps.publish.outputs.type
|
|
28
|
+
if: ${{ steps.publish.outputs.type }}
|
|
29
29
|
id: create_release
|
|
30
30
|
uses: actions/create-release@v1
|
|
31
31
|
env:
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
|
|
40
40
|
- name: "Trigger new GH Page creation in mcData repo"
|
|
41
41
|
uses: peter-evans/repository-dispatch@v1
|
|
42
|
-
if: steps.publish.outputs.type
|
|
42
|
+
if: ${{ steps.publish.outputs.type }} || github.event_name == 'workflow_dispatch'
|
|
43
43
|
with:
|
|
44
44
|
token: ${{ secrets.PAT_PASSWORD }}
|
|
45
45
|
repository: PrismarineJS/minecraft-data
|
package/doc/history.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# History
|
|
2
2
|
|
|
3
|
+
## 3.107.0
|
|
4
|
+
* [Update CI to Node 24 (#445)](https://github.com/PrismarineJS/node-minecraft-data/commit/cd37593e8ede05f266ef3e3d519f344b16f20ef7) (thanks @rom1504)
|
|
5
|
+
* [Fix publish condition for npm-publish v4 (#444)](https://github.com/PrismarineJS/node-minecraft-data/commit/f63f8f9760f5717bfb530b2e87d6f670b97f7b4d) (thanks @rom1504)
|
|
6
|
+
|
|
3
7
|
## 3.106.0
|
|
4
8
|
* [Use Node 24 for trusted publishing support (#442)](https://github.com/PrismarineJS/node-minecraft-data/commit/f451f6a634f0f7e93344cfe23608fcfacf6d4c8a) (thanks @rom1504)
|
|
5
9
|
* [Upgrade npm for trusted publishing support (#440)](https://github.com/PrismarineJS/node-minecraft-data/commit/d6271bfcd4d1834795ee1f7ab928265839780f53) (thanks @rom1504)
|