From c7e205f14ba4a2e5a2fb2aa3b50c7f3bafe5c711 Mon Sep 17 00:00:00 2001 From: Conrad Date: Thu, 24 Oct 2024 12:18:50 +0200 Subject: [PATCH] fix: fixed naming of pre-release commits --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9467201..9e66e65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,8 +80,8 @@ jobs: git tag ${{ steps.git_version.outputs.version }} git push origin ${{ steps.git_version.outputs.version }} elif [ "${{ github.head_ref }}" == "dev" ]; then - git tag ${{ steps.git_version.outputs.version }}-rc - git push origin ${{ steps.git_version.outputs.version }}-rc + git tag ${{ steps.git_version.outputs.version }}-rc.${{ github.sha }} + git push origin ${{ steps.git_version.outputs.version }}-rc.${{ github.sha }} fi - name: Set up Python