fix: fixed naming of pre-release commits

This commit is contained in:
2024-10-24 12:41:04 +02:00
parent d6f79c3ed8
commit d54146e05b

View File

@@ -81,8 +81,8 @@ jobs:
git push origin ${{ steps.git_version.outputs.version }}
elif [ "${{ github.head_ref }}" == "dev" ]; then
calculatedSha=$(git rev-parse --short ${{ github.sha }})
git tag ${{ steps.git_version.outputs.version }}-rc+${calculatedSha}
git push origin ${{ steps.git_version.outputs.version }}-rc+${calculatedSha}
git tag ${{ steps.git_version.outputs.version }}rc.dev${calculatedSha}
git push origin ${{ steps.git_version.outputs.version }}rc.dev${calculatedSha}
fi
- name: Set up Python