From 684b61a8cefe16db2d8686758ddccb04ada8ff76 Mon Sep 17 00:00:00 2001 From: Vadym Yaroshchuk Date: Tue, 27 Feb 2024 00:12:29 +0100 Subject: [PATCH] fix: version in workflow --- .github/workflows/publish-release-version.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-release-version.yml b/.github/workflows/publish-release-version.yml index 744d12e..185bb13 100644 --- a/.github/workflows/publish-release-version.yml +++ b/.github/workflows/publish-release-version.yml @@ -32,5 +32,5 @@ jobs: env: REPOSILITE_USER: ${{ secrets.REPOSILITE_USER }} REPOSILITE_SECRET: ${{ secrets.REPOSILITE_SECRET }} - LIB_VERSION: dev-${{ github.sha }} - run: ./gradlew publishKotlinMultiplatformPublicationToTimeMatesReleasesRepository -Pversion=dev-${{ env.LIB_VERSION }} + LIB_VERSION: ${{ github.ref_name }} + run: ./gradlew publishKotlinMultiplatformPublicationToTimeMatesReleasesRepository -Pversion=${{ env.LIB_VERSION }}