From 1a39b9b63c5d9b460d2d220ceb22391a0ac64b5d Mon Sep 17 00:00:00 2001 From: ParticleG Date: Mon, 11 Jul 2022 15:42:24 +0800 Subject: [PATCH] - Fix missing input --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 3289c47..929fe61 100644 --- a/action.yml +++ b/action.yml @@ -63,7 +63,7 @@ runs: - name: Assemble executable shell: bash run: | - cat ./squashfs-root/bin/love ./target.love > ./squashfs-root/bin/${{ inputs.executable-name }} + cat ./squashfs-root/bin/love ${{ inputs.love-package }} > ./squashfs-root/bin/${{ inputs.executable-name }} chmod +x ./squashfs-root/bin/${{ inputs.executable-name }} - name: Set icon if: "${{ inputs.icon-path != '' }}"