We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd3e178 commit bef7fa2Copy full SHA for bef7fa2
1 file changed
.github/workflows/yc_ml_build_and_push.yaml
@@ -19,6 +19,10 @@ on:
19
required: false
20
type: string
21
default: "yc-"
22
+ tag_suffix:
23
+ required: false
24
+ type: string
25
+ default: ""
26
bundle_without:
27
28
@@ -86,6 +90,9 @@ jobs:
86
90
submodules: true
87
91
token: ${{ env.GIT_TOKEN }}
88
92
lfs: true
93
+ - name: Get tag suffix
94
+ id: get_tag_suffix
95
+ run: echo "::set-output name=new_tag_suffix::${{ inputs.tag_suffix}}"
89
96
- name: Dry run for getting a version
97
id: get_tag_version
98
uses: mathieudutour/github-tag-action@v6.1
@@ -123,4 +130,4 @@ jobs:
123
130
- name: Drop credentials
124
131
if: always()
125
132
run: |
126
- rm -rf ~/.docker
133
+ rm -rf ~/.docker
0 commit comments