Skip to content

Commit

Permalink
F | auto_pack | not "echo"
Browse files Browse the repository at this point in the history
  • Loading branch information
FTS427 committed Aug 15, 2024
1 parent 60caad6 commit 0f0b2ef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/auto_pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 0f0b2ef

Please sign in to comment.