From 4ba01fcda820e379788b2fc333e783060492dccf Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Tue, 17 Oct 2023 15:03:31 +0100 Subject: [PATCH] ci(pytest): fix dependent job naming --- .github/workflows/r-pytest.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/r-pytest.yml b/.github/workflows/r-pytest.yml index 14dee1666a..9c53ee0b40 100644 --- a/.github/workflows/r-pytest.yml +++ b/.github/workflows/r-pytest.yml @@ -37,9 +37,9 @@ jobs: environment: name: ${{ inputs.environment || 'test' }} needs: - - postgis-img-cache - - odk-img-cache - - odk-proxy-img-cache + - cache-img-postgis + - cache-img-odk + - cache-img-odk-proxy steps: - name: Checkout repository @@ -50,20 +50,20 @@ jobs: uses: actions/cache@v3 with: path: | - ${{ needs.postgis-img-cache.outputs.cache_path }} - ${{ needs.odk-img-cache.outputs.cache_path }} - ${{ needs.odk-proxy-img-cache.outputs.cache_path }} + ${{ needs.cache-img-postgis.outputs.cache_path }} + ${{ needs.cache-img-odk.outputs.cache_path }} + ${{ needs.cache-img-odk-proxy-cache.outputs.cache_path }} key: | - ${{ needs.postgis-img-cache.outputs.cache_key }} - ${{ needs.odk-img-cache.outputs.cache_key }} - ${{ needs.odk-proxy-img-cache.outputs.cache_key }} + ${{ needs.cache-img-postgis.outputs.cache_key }} + ${{ needs.cache-img-odk.outputs.cache_key }} + ${{ needs.cache-img-odk-proxy-cache.outputs.cache_key }} - name: Load Cached Imgs if: steps.restore-imgs.outputs.cache-hit == 'true' run: | - docker image load --input ${{ needs.postgis-img-cache.outputs.cache_path }} || true - docker image load --input ${{ needs.odk-img-cache.outputs.cache_path }} || true - docker image load --input ${{ needs.odk-proxy-img-cache.outputs.cache_path }} || true + docker image load --input ${{ needs.cache-img-postgis.outputs.cache_path }} || true + docker image load --input ${{ needs.cache-img-odk.outputs.cache_path }} || true + docker image load --input ${{ needs.cache-img-odk-proxy-cache.outputs.cache_path }} || true - name: Environment to .env env: