From 3afab2d7439ea47b0ba5fc76da0737fbc4fbce05 Mon Sep 17 00:00:00 2001 From: Hexagonn <128217934+hexaaagon@users.noreply.github.com> Date: Thu, 4 Jul 2024 21:50:09 +0700 Subject: [PATCH] update: sync `.zip` file with `.mcpack` file --- .github/workflows/onRelease.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/onRelease.yml b/.github/workflows/onRelease.yml index 59c148a..727dfdf 100644 --- a/.github/workflows/onRelease.yml +++ b/.github/workflows/onRelease.yml @@ -36,11 +36,8 @@ jobs: - name: Create MC Pack file run: | - echo "📚 Creating MC Pack file (excluding specific files and other ZIP files)" - zip -r mc_pack.zip . -x "node_modules/*" ".git/*" "src/*" ".github/*" "tsconfig.json" "README.md" "package.json" "package-lock.json" ".gitignore" "*.zip" - echo "📚 Packaging to .mcpack from MC Pack File" - cp mc_pack.zip CCBG_${{ github.event.release.tag_name }}.mcpack + cp CCBG_${{ github.event.release.tag_name }}.zip CCBG_${{ github.event.release.tag_name }}.mcpack echo "✨ Done!"