Compare commits

...

2 Commits

Author SHA1 Message Date
d54146e05b fix: fixed naming of pre-release commits 2024-10-24 12:41:04 +02:00
d6f79c3ed8 fix: fixed naming of pre-release commits 2024-10-24 12:35:13 +02:00

View File

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