Skip to content

Commit 72cc578

Browse files
committed
update: v3.20.1
- ci fix
1 parent ed943cd commit 72cc578

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/mcpack.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
3636
- name: Make Archive
3737
run: |
38+
echo "Creating archive: ${fileName}"
3839
zip -r "${fileName}" ./ -x "*.git*" "*node_modules*" "package-lock.json" ".eslintrc.json" "tsconfig.json" "CONTRIBUTING.md"
3940
4041
- name: Upload Release Asset
@@ -43,6 +44,6 @@ jobs:
4344
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4445
with:
4546
upload_url: ${{ github.event.release.upload_url }}
46-
asset_path: "./${fileName}"
47-
asset_name: "${fileName}"
47+
asset_path: "./${{ env.fileName }}"
48+
asset_name: "${{ env.fileName }}"
4849
asset_content_type: application/zip

manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"format_version": 2,
33
"header": {
4-
"name": "TN-AntiCheat v3.20.0",
4+
"name": "TN-AntiCheat v3.20.1",
55
"description": "AntiCheat with ScriptAPI\n軽量で使いやすいアンチチートアドオンです\nMade by RetoRuto9900K / tutinoko2048",
66
"uuid": "c225a904-422a-4917-b88d-5c3452b8d17f",
7-
"version": [ 3, 20, 0 ],
7+
"version": [ 3, 20, 1 ],
88
"min_engine_version": [ 1, 21, 70 ]
99
},
1010
"modules": [
1111
{
12-
"version": [ 3, 20, 0 ],
12+
"version": [ 3, 20, 1 ],
1313
"type": "data",
1414
"uuid": "91a60c53-392b-4007-859a-a1e087a62d1a",
1515
"description": "data module"
1616
},
1717
{
18-
"version": [ 3, 20, 0 ],
18+
"version": [ 3, 20, 1 ],
1919
"type": "script",
2020
"language": "javascript",
2121
"entry": "scripts/index.js",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tn-anticheat",
3-
"version": "3.20.0",
3+
"version": "3.20.1",
44
"description": "Anti-cheat addon with ScriptAPI / For Multiplayer, Realms, Servers / Recommended Japanese",
55
"main": "scripts/index.js",
66
"typings": "scripts/types.d.ts",

scripts/util/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const VERSION = '3.20.0';
1+
export const VERSION = '3.20.1';
22
export const DISCORD_URL = 'discord.gg/XGR8FcCeFc';
33

44
export const PropertyIds = /** @type {const} */ ({

0 commit comments

Comments
 (0)