From cf9272f591b250ca77631910b331d35c80a3d042 Mon Sep 17 00:00:00 2001 From: Paulanerus <41129807+Paulanerus@users.noreply.github.com> Date: Thu, 12 Dec 2024 08:54:08 +0100 Subject: [PATCH] fix: Correct API version environment variable in release upload step --- .github/workflows/build-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index f54d360..0ef165a 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -54,7 +54,7 @@ jobs: run: ./gradlew :api:build - name: Upload API - run: gh release upload v${{ env.VERSION }} api/build/libs/api-${{ API_VERSION }}.jar --clobber + run: gh release upload v${{ env.VERSION }} api/build/libs/api-${{ env.API_VERSION }}.jar --clobber build: needs: create-release