Skip to content

Commit 5075d27

Browse files
committed
Fixes
1 parent 4f235ef commit 5075d27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
steps:
1616
- name: Build image
1717
env:
18-
VERSION: ${{ inputs.version }}
18+
VARNISH_VER: ${{ inputs.version }}
1919
LATEST: ${{ inputs.latest }}
2020
LATEST_MAJOR: ${{ inputs.latest_major }}
2121
run: |

.github/actions/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -exo pipefail
44

55
if [[ "${GITHUB_REF}" == refs/heads/master || "${GITHUB_REF}" == refs/tags/* ]]; then
6-
minor_ver="${VERSION%.*}"
6+
minor_ver="${VARNISH_VER%.*}"
77
major_ver="${minor_ver%.*}"
88

99
tags=("${minor_ver}")

0 commit comments

Comments
 (0)