File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626name : Publish Docker Image
2727
2828on :
29+ push :
30+ branches :
31+ - chore/release_1
2932 workflow_call :
3033 inputs :
3134 tag :
7073 - name : Set Docker tags
7174 id : meta
7275 run : |
73- INPUT_TAG="${{ inputs.tag }}"
76+ INPUT_TAG=dev-v0.1.1
7477 if [ -z "$INPUT_TAG" ]; then echo "::error::inputs.tag is empty"; exit 1; fi
7578 if echo "$INPUT_TAG" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
7679 if [ "${{ github.ref }}" != "refs/heads/master" ] && [ "${{ github.event_name }}" != "release" ]; then
@@ -130,7 +133,7 @@ jobs:
130133 - name : Set Docker tags
131134 id : meta
132135 run : |
133- INPUT_TAG="${{ inputs.tag }}"
136+ INPUT_TAG=dev-v0.1.1
134137 if [ -z "$INPUT_TAG" ]; then echo "::error::inputs.tag is empty"; exit 1; fi
135138 if echo "$INPUT_TAG" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
136139 if [ "${{ github.ref }}" != "refs/heads/master" ] && [ "${{ github.event_name }}" != "release" ]; then
You can’t perform that action at this time.
0 commit comments