Skip to content

Commit 1705d3b

Browse files
authored
Merge pull request #25 from oasoobi/dev
update to 1.21.100
2 parents 862559a + d41ebe4 commit 1705d3b

22 files changed

+345
-2792
lines changed

.github/workflows/release-mcpack.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,18 @@ jobs:
3333
--exclude='.github/' \
3434
--exclude='.gitignore' \
3535
--exclude='README.md' \
36-
--exclude='package-lock.json' \
36+
--exclude='pnpm--lock.json' \
3737
--exclude='package.json' \
3838
--exclude='versions.json' \
3939
--exclude='src/' \
4040
--exclude='tsconfig.json' \
41-
--exclude='.vscode/' \
4241
./ build/
4342
4443
- name: Create MCPACK
4544
run: |
45+
VERSION="${{ github.event.inputs.tag_name }}"
4646
cd build
47-
zip -r ../NoteBlockPlus.mcpack ./*
48-
47+
zip -r "../NoteBlockPlus_${VERSION}.mcpack" ./*
4948
- name: Create GitHub Release
5049
uses: softprops/action-gh-release@v1
5150
with:
@@ -54,6 +53,6 @@ jobs:
5453
body: ${{ github.event.inputs.release_message }}
5554
draft: false
5655
prerelease: false
57-
files: NoteBlockPlus.mcpack
56+
files: NoteBlockPlus_${{ github.event.inputs.tag_name }}.mcpack
5857
env:
5958
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

manifest.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"format_version": 2,
33
"header": {
4-
"name": "Note Block+ v2.1.0",
4+
"name": "Note Block+ v2.1.2",
55
"description": "音ブロックの音階を表示するアドオン。 \nCreated by oasoby",
66
"min_engine_version": [
77
1,
88
21,
9-
90
9+
100
1010
],
1111
"uuid": "fc863469-2162-461d-8ba8-2691c9197deb",
1212
"version": [
1313
2,
1414
1,
15-
0
15+
2
1616
]
1717
},
1818
"modules": [
@@ -27,7 +27,6 @@
2727
},
2828
{
2929
"type": "script",
30-
"language": "javascript",
3130
"uuid": "4543713e-8261-47f1-8942-db4ea37598ce",
3231
"entry": "scripts/main.js",
3332
"version": [
@@ -40,7 +39,7 @@
4039
"dependencies": [
4140
{
4241
"module_name": "@minecraft/server",
43-
"version": "2.1.0-beta"
42+
"version": "2.2.0-beta"
4443
},
4544
{
4645
"module_name": "@minecraft/server-ui",

0 commit comments

Comments
 (0)