File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 11name : " Release: Pipeline"
22
33on :
4+ workflow_dispatch :
5+ inputs :
6+ ref :
7+ description : ' Commit SHA or ref name or tag'
8+ required : true
9+ default : ' master'
10+ type : string
411 release :
512 types :
613 - released
3441
3542 - uses : actions/checkout@v4
3643 with :
37- ref : " ${{ env.GITHUB_SHA }}"
44+ ref : " ${{ inputs.ref || github.ref_name }}"
3845
3946 - name : Set up Docker Buildx
40475562 DOCKER_BUILD_RECORD_UPLOAD : " false"
5663 with :
5764 context : " ${{ env.DOCKER_EXAMPLES_DIRECTORY }}/${{ env.backend_dir_name }}"
58- tags : " ${{ matrix.backend_tag_prefix }}${{ github.ref_name }}"
65+ tags : " ${{ matrix.backend_tag_prefix }}${{ inputs.ref || github.ref_name }}"
5966 cache-from : type=gha
6067 cache-to : type=gha,mode=max
6168
You can’t perform that action at this time.
0 commit comments