We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f235ef commit 5075d27Copy full SHA for 5075d27
.github/actions/action.yml
@@ -15,7 +15,7 @@ runs:
15
steps:
16
- name: Build image
17
env:
18
- VERSION: ${{ inputs.version }}
+ VARNISH_VER: ${{ inputs.version }}
19
LATEST: ${{ inputs.latest }}
20
LATEST_MAJOR: ${{ inputs.latest_major }}
21
run: |
.github/actions/release.sh
@@ -3,7 +3,7 @@
3
set -exo pipefail
4
5
if [[ "${GITHUB_REF}" == refs/heads/master || "${GITHUB_REF}" == refs/tags/* ]]; then
6
- minor_ver="${VERSION%.*}"
+ minor_ver="${VARNISH_VER%.*}"
7
major_ver="${minor_ver%.*}"
8
9
tags=("${minor_ver}")
0 commit comments