diff --git a/.github/workflows/auto_pack.yml b/.github/workflows/auto_pack.yml index e96ee19..2fda5e1 100644 --- a/.github/workflows/auto_pack.yml +++ b/.github/workflows/auto_pack.yml @@ -87,7 +87,7 @@ jobs: - name: 🧰 Install LeviLamina working-directory: ll run: | - lip.exe install -y github.com/LiteLDev/LeviLamina@$(echo ..\.version) + lip.exe install -y github.com/LiteLDev/LeviLamina@$(cat ..\.version) - name: ⚙️ Install LSE if: ${{ env.ENABLE_LSE == 'true' }} @@ -130,16 +130,16 @@ jobs: - name: 📦 Pack Files run: | - 7z a ll_$(echo .version)-bds_${{ steps.get_bds_core_version.outputs.bds_core_version }} .\ll\ + 7z a ll_$(cat .version)-bds_${{ steps.get_bds_core_version.outputs.bds_core_version }} .\ll\ - name: 🎉 Upload Release uses: softprops/action-gh-release@v1 with: - files: ll_$(echo .version)-bds_${{ steps.get_bds_core_version.outputs.bds_core_version }} - name: LeviLamina Packed - $(echo .version) - tag_name: $(echo .version) + files: ll_$(cat .version)-bds_${{ steps.get_bds_core_version.outputs.bds_core_version }} + name: LeviLamina Packed - $(cat .version) + tag_name: $(cat .version) body: | - LeviLamina version: $(echo .version) + LeviLamina version: $(cat .version) BDS core needed version: ${{ steps.get_bds_core_version.outputs.bds_core_version }} Include LSE: ${{ env.ENABLE_LSE }} Include Runtime: ${{ env.ENABLE_RUNTIME }}