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 b62c214 commit 8e1f776Copy full SHA for 8e1f776
.github/workflows/main.yml
@@ -79,8 +79,9 @@ jobs:
79
if [[ ! -z "${{ github.event.inputs.version }}" ]]; then
80
TEMP=${{ github.event.inputs.version }}
81
TEMP=${TEMP:1}
82
+ TEMP2=$(echo $GITHUB_REF | awk -F '/' '{ print $3}')
83
echo "$GITHUB_REF - $TEMP"
- TAGS="${echo $TAGS | sed "s|$GITHUB_REF|$TEMP|"}"
84
+ TAGS=$(echo $TAGS | sed "s/$TEMP2/$TEMP/")
85
TRAVIS_TAG=${{ github.event.inputs.version }}
86
else
87
TRAVIS_TAG=$(echo $GITHUB_REF | awk -F '/' '{ print $3}')
0 commit comments