From 27b2a75e8f0f4d0de70ea7674ad54c3bf450c270 Mon Sep 17 00:00:00 2001 From: Yana Vasileva Date: Wed, 12 Jul 2023 17:51:37 +0200 Subject: [PATCH] move arg definition to the workflow --- .github/workflows/build-and-test-ee.yml | 4 ++++ Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test-ee.yml b/.github/workflows/build-and-test-ee.yml index f9146947..4f21d328 100644 --- a/.github/workflows/build-and-test-ee.yml +++ b/.github/workflows/build-and-test-ee.yml @@ -26,10 +26,14 @@ jobs: PLATFORM: ${{ matrix.PLATFORM }} NEXUS_PASS: ${{ secrets.NEXUS_PASS }} NEXUS_USER: ${{ secrets.NEXUS_USER }} + VERSION: '7.19.5' + SNAPSHOT: true - name: Test run: ./test.sh working-directory: test env: DISTRO: ${{ matrix.DISTRO }} EE: true + VERSION: '7.19.5' + SNAPSHOT: true PLATFORM: ${{ matrix.PLATFORM }} diff --git a/Dockerfile b/Dockerfile index 541883d6..448a996a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.15 as builder -ARG VERSION=7.19.5 +ARG VERSION=7.19.0 ARG DISTRO=tomcat ARG SNAPSHOT=false