From 7993fdf270bc6132a609c1eff4465852b8e6f02a Mon Sep 17 00:00:00 2001 From: MrCrayfish <4958241+MrCrayfish@users.noreply.github.com> Date: Mon, 14 Oct 2024 20:11:56 +1030 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Fix=20incorrect=20forge=20artifa?= =?UTF-8?q?ct=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/forge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/forge.yml b/.github/workflows/forge.yml index eb9368cf..93c3b29f 100644 --- a/.github/workflows/forge.yml +++ b/.github/workflows/forge.yml @@ -54,7 +54,7 @@ jobs: - name: Construct artifact files id: artifacts run: | - echo "forge=forge/build/libs/${{ steps.mod_data.outputs.mod_id }}-forge-${{ steps.mod_data.outputs.minecraft_version }}-${{ steps.mod_data.outputs.mod_version }}-signed.jar" >> "$GITHUB_OUTPUT" + echo "forge=forge/build/libs/${{ steps.mod_data.outputs.mod_id }}-forge-${{ steps.mod_data.outputs.minecraft_version }}-${{ steps.mod_data.outputs.mod_version }}.jar" >> "$GITHUB_OUTPUT" - name: Import GPG env: SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}