1313 description : ' Branch to checkout, build and publish'
1414 required : false
1515 default : ' dev'
16- tag :
16+ tag-to-apply :
1717 type : string
1818 description : ' Tag to apply to the images'
1919 required : false
@@ -33,10 +33,10 @@ jobs:
3333 git config --global user.name "${{ env.GIT_USERNAME }}"
3434 git config --global user.email "${{ env.GIT_EMAIL }}"
3535
36- - name : Create new tag ${{ github.event.inputs.tag }}
36+ - name : Create new tag ${{ github.event.inputs.tag-to-apply }}
3737 run : |
38- git tag -f -a ${{ github.event.inputs.tag }} -m "[bot] release ${{ github.event.inputs.tag }}"
39- git push origin ${{ github.event.inputs.tag }} -f
38+ git tag -f -a ${{ github.event.inputs.tag-to-apply }} -m "[bot] release ${{ github.event.inputs.tag-to-apply }}"
39+ git push origin ${{ github.event.inputs.tag-to-apply }} -f
4040
4141 publish-docker-containers :
4242 needs : tag
@@ -46,21 +46,21 @@ jobs:
4646 fail-fast : false
4747 uses : ./.github/workflows/release-x-manual-docker-containers.yml
4848 with :
49- release_number : ${{ github.event.inputs.tag }}
49+ release_number : ${{ github.event.inputs.tag-to-apply }}
5050 platform : ${{ matrix.platform }}
5151 secrets : inherit
5252
5353 publish-container-digests :
5454 needs : publish-docker-containers
5555 uses : ./.github/workflows/release-x-manual-merge-container-digests.yml
5656 with :
57- release_number : ${{ github.event.inputs.tag }}
57+ release_number : ${{ github.event.inputs.tag-to-apply }}
5858 secrets : inherit
5959
6060 release-helm-chart :
6161 needs : publish-container-digests
6262 uses : ./.github/workflows/release-x-manual-helm-chart.yml
6363 with :
64- release_number : ${{ github.event.inputs.tag }}
64+ release_number : ${{ github.event.inputs.tag-to-apply }}
6565 secrets : inherit
6666
0 commit comments