We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 477f2f6 commit e0f77d9Copy full SHA for e0f77d9
.github/workflows/main.yml
@@ -78,7 +78,8 @@ jobs:
78
79
if [[ ! -z "${{ github.event.inputs.version }}" ]]; then
80
TEMP=${{ github.event.inputs.version }}
81
- TAGS=`echo $TAGS | sed "s/$TRAVIS_TAG/${TEMP:1}/"`
+ TEMP=${TEMP:1}
82
+ TAGS=`echo $TAGS | sed "s|$TRAVIS_TAG|$TEMP|"`
83
TRAVIS_TAG=${{ github.event.inputs.version }}
84
else
85
TRAVIS_TAG=$(echo $GITHUB_REF | awk -F '/' '{ print $3}')
0 commit comments