File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 35
35
if [ -n "${{ github.event.inputs.version }}" ]; then
36
36
export VERSION=${{ github.event.inputs.version }}
37
37
else
38
- export VERSION=$(echo "$GITHUB_REF" | cut -c8 -)
38
+ export VERSION=$(echo "$GITHUB_REF" | cut -c12 -)
39
39
fi
40
40
make build
41
41
make push
61
61
if [ -n "${{ github.event.inputs.version }}" ]; then
62
62
export VERSION=${{ github.event.inputs.version }}
63
63
else
64
- export VERSION=$(echo "$GITHUB_REF" | cut -c8 -)
64
+ export VERSION=$(echo "$GITHUB_REF" | cut -c12 -)
65
65
fi
66
66
make helm-publish
67
67
release :
77
77
if [ -n "${{ github.event.inputs.version }}" ]; then
78
78
export VERSION=${{ github.event.inputs.version }}
79
79
else
80
- export VERSION=$(echo "$GITHUB_REF" | cut -c8 -)
80
+ export VERSION=$(echo "$GITHUB_REF" | cut -c12 -)
81
81
fi
82
82
make build-cli
83
83
- name : Release
You can’t perform that action at this time.
0 commit comments