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 61b7e9a commit 426a281Copy full SHA for 426a281
.github/workflows/main.yml
@@ -72,10 +72,10 @@ jobs:
72
fi
73
done <<< "${{ steps.meta.outputs.tags }}"
74
75
- echo "version = ${{ github.events.inputs.version}}"
+ echo "version = ${{ github.event.inputs.version }}"
76
77
- if [ -z "${{ github.events.inputs.version }}"]; then
78
- TRAVIS_TAG={{ github.events.inputs.version }}
+ if [[ ! -z "${{ github.events.input.version }}" ]]; then
+ TRAVIS_TAG=${{ github.event.inputs.version }}
79
else
80
TRAVIS_TAG=$(echo $GITHUB_REF | awk -F '/' '{ print $3}')
81
0 commit comments