@@ -44,17 +44,17 @@ jobs:
4444 - name : Checkout
4545 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4646 with :
47- ref : ${{ github.event. inputs.branch-to-build }}
47+ ref : ${{ inputs.branch-to-build }}
4848
4949 - name : Configure git
5050 run : |
5151 git config --global user.name "${{ env.GIT_USERNAME }}"
5252 git config --global user.email "${{ env.GIT_EMAIL }}"
5353
54- - name : Create new tag ${{ github.event. inputs.tag-to-apply }}
54+ - name : Create new tag ${{ inputs.tag-to-apply }}
5555 run : |
56- git tag -f -a ${{ github.event. inputs.tag-to-apply }} -m "[bot] release ${{ github.event. inputs.tag-to-apply }}"
57- git push origin ${{ github.event. inputs.tag-to-apply }} -f
56+ git tag -f -a ${{ inputs.tag-to-apply }} -m "[bot] release ${{ inputs.tag-to-apply }}"
57+ git push origin ${{ inputs.tag-to-apply }} -f
5858
5959 publish-docker-containers :
6060 needs : tag
@@ -64,21 +64,21 @@ jobs:
6464 fail-fast : false
6565 uses : ./.github/workflows/release-x-manual-docker-containers.yml
6666 with :
67- release_number : ${{ github.event. inputs.tag-to-apply }}
67+ release_number : ${{ inputs.tag-to-apply }}
6868 platform : ${{ matrix.platform }}
6969 secrets : inherit
7070
7171 publish-container-digests :
7272 needs : publish-docker-containers
7373 uses : ./.github/workflows/release-x-manual-merge-container-digests.yml
7474 with :
75- release_number : ${{ github.event. inputs.tag-to-apply }}
75+ release_number : ${{ inputs.tag-to-apply }}
7676 secrets : inherit
7777
7878 release-helm-chart :
7979 needs : publish-container-digests
8080 uses : ./.github/workflows/release-x-manual-helm-chart.yml
8181 with :
82- release_number : ${{ github.event. inputs.tag-to-apply }}
82+ release_number : ${{ inputs.tag-to-apply }}
8383 secrets : inherit
8484
0 commit comments