fix: set make vars explicitly

This commit is contained in:
Paolo Cuffiani
2022-04-21 18:43:40 +02:00
parent b8ff353103
commit 3cdbe1b738
+3 -4
View File
@@ -51,8 +51,7 @@ jobs:
env:
REGISTRY: localhost:5000/
VERSION: ${{ matrix.version }}${{ matrix.flavor }}
run: |
make test
run: make test VERSION=${VERSION} REGISTRY=${REGISTRY}
- name: Build dev image for testing
uses: docker/build-push-action@v2
@@ -68,7 +67,7 @@ jobs:
env:
REGISTRY: localhost:5000/
VERSION: ${{ matrix.version }}${{ matrix.flavor }}
run: make -C dev test
run: make -C dev test VERSION=${VERSION} REGISTRY=${REGISTRY}
- name: Build xhprof image for testing
uses: docker/build-push-action@v2
@@ -84,7 +83,7 @@ jobs:
env:
REGISTRY: localhost:5000/
VERSION: ${{ matrix.version }}${{ matrix.flavor }}
run: make -C xhprof test
run: make -C xhprof test VERSION=${VERSION} REGISTRY=${REGISTRY}
- name: Login to DockerHub
if: "github.event_name != 'pull_request'"