Update the release tag if already existing

This commit is contained in:
Erwan MATHIEU 2024-08-13 15:43:52 +02:00
parent 0d103c15e2
commit da1f7edd01

View File

@ -76,11 +76,16 @@ jobs:
ref: ${{ needs.parse-version.outputs.branch_name }} ref: ${{ needs.parse-version.outputs.branch_name }}
token: ${{ secrets.CURA_AUTORELEASE_PAT }} token: ${{ secrets.CURA_AUTORELEASE_PAT }}
- name: Create tag - name: Create RC tag
run: | run: |
git tag ${{ needs.find-rc-tag.outputs.tag_name }} git tag ${{ needs.find-rc-tag.outputs.tag_name }}
git push origin tag ${{ needs.find-rc-tag.outputs.tag_name }} git push origin tag ${{ needs.find-rc-tag.outputs.tag_name }}
- name: Create release tag
run: |
git tag -f ${{ inputs.cura_version }}
git push -f origin tag ${{ inputs.cura_version }}
create-dependencies-packages: create-dependencies-packages:
name: Create conan packages for dependencies name: Create conan packages for dependencies
uses: ultimaker/cura-workflows/.github/workflows/conan-package-release.yml@main uses: ultimaker/cura-workflows/.github/workflows/conan-package-release.yml@main