From ba7e158c60ed5eca27417ed9ce624a682d88e915 Mon Sep 17 00:00:00 2001 From: nostalgic853 Date: Sun, 23 Oct 2022 17:23:25 +0800 Subject: [PATCH] Fix artifact name --- .github/workflows/build-stable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-stable.yml b/.github/workflows/build-stable.yml index e1b0c13..229826d 100644 --- a/.github/workflows/build-stable.yml +++ b/.github/workflows/build-stable.yml @@ -44,12 +44,12 @@ jobs: export BUILD_NUMBER_111=${{ env.workflow }} ./gradlew createReobfPaperclipJar --stacktrace --no-daemon - name: Rename Jar - run: "mv build/libs/keyi-paperclip-${{ env.MC_VERSION }}-R0.1-SNAPSHOT-reobf.jar build/libs/keyi-${{ env.MC_VERSION }}-${{ env.ref }}-${{ env.workflow }}.jar" + run: "mv build/libs/keyi-paperclip-${{ env.MC_VERSION }}-R0.1-SNAPSHOT-reobf.jar build/libs/keyi-stable-${{ env.MC_VERSION }}-${{ env.workflow }}.jar" - name: Release Artifacts uses: marvinpinto/action-automatic-releases@latest with: title: "[${{ env.ref }}] #${{ env.workflow }}" automatic_release_tag: ${{ env.ref }}-1.19.2-${{ env.workflow }} repo_token: "${{ secrets.GITHUB_TOKEN }}" - files: build/libs/keyi-${{ env.MC_VERSION }}-${{ env.ref }}-${{ env.workflow }}.jar + files: build/libs/keyi-stable-${{ env.MC_VERSION }}-${{ env.workflow }}.jar prerelease: false