From a1cd3a476b7abc6c322531744fd49ad685602747 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 22 Jun 2021 14:27:26 +0200 Subject: [PATCH] Update CI artifact naming convention --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9548d04..e47bee6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,11 @@ jobs: rm sources cd build jar cvf build.jar * + + - name: Rename Artifacts + run: | + cd build + mv out.jar $(sha1sum build.jar | sed "s/\([^ ]*\) .*/SpigotInvTweaks-\\1.jar/g") - uses: "marvinpinto/action-automatic-releases@latest" with: @@ -52,4 +57,4 @@ jobs: prerelease: true title: "CI Build" files: | - build/build.jar + build/SpigotInvTweaks-*.jar