From cefadc50c4c7a2a3b32b9cb91edcf45ef4cf6eae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Guti=C3=A9rrez=20Hermoso?= Date: Thu, 27 Jun 2024 08:34:19 -0400 Subject: [PATCH] workflows: ensure we also use the experimental image we just built I think without a tag it defaults to `latest`, which is not what we want. --- .github/workflows/docker_latest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker_latest.yml b/.github/workflows/docker_latest.yml index d4539031..4a6f2c1c 100644 --- a/.github/workflows/docker_latest.yml +++ b/.github/workflows/docker_latest.yml @@ -33,7 +33,7 @@ jobs: - name: "grist" repo: "grist-ee" # For now, we build it twice, with `grist-ee` being a - # backwards-compatible synoym for `grist`. + # backwards-compatible synonym for `grist`. - name: "grist-ee" repo: "grist-ee" steps: @@ -88,7 +88,7 @@ jobs: yarn run build:prod - name: Run tests - run: TEST_IMAGE=${{ github.repository_owner }}/${{ matrix.image.name }} VERBOSE=1 DEBUG=1 MOCHA_WEBDRIVER_HEADLESS=1 yarn run test:docker + run: TEST_IMAGE=${{ github.repository_owner }}/${{ matrix.image.name }}:experimental VERBOSE=1 DEBUG=1 MOCHA_WEBDRIVER_HEADLESS=1 yarn run test:docker - name: Log in to Docker Hub uses: docker/login-action@v1