Github: Fix command syntax

This commit is contained in:
Matthew Wild 2020-05-13 15:24:59 +01:00
parent 481d5b610f
commit 3d22748cd2
1 changed files with 4 additions and 4 deletions

View File

@ -13,10 +13,10 @@ jobs:
- uses: actions/checkout@v2
- name: Build the Docker image
run: >-
echo "Building ref $GITHUB_REF..."
RELEASE_TAG="${GITHUB_REF#refs/tags/release/}"
RELEASE_SERIES="${RELEASE_TAG%.*}"
RELEASE_VER="${RELEASE_TAG#$RELEASE_SERIES.}"
echo "Building ref $GITHUB_REF..." ;\
RELEASE_TAG="${GITHUB_REF#refs/tags/release/}" ;\
RELEASE_SERIES="${RELEASE_TAG%.*}" ;\
RELEASE_VER="${RELEASE_TAG#$RELEASE_SERIES.}" ;\
docker build . \
--file docker/Dockerfile \
--build-arg=BUILD_SERIES="$RELEASE_SERIES" \