diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5c65650dfa..479442fd68 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -51,6 +51,7 @@ jobs: - name: Cache Docker Image uses: actions/cache@v3 with: + key: ${{ env.TAG }} path: /tmp/${{ env.TAG }}.tar # - name: Upload Docker Image @@ -71,11 +72,17 @@ jobs: fetch-depth: 1 submodules: recursive - - name: Download artifact - uses: actions/download-artifact@v3 + # - name: Download artifact + # uses: actions/download-artifact@v3 + # with: + # name: ${{ env.TAG }} + # path: /tmp + + - name: Get Cached Docker Image + uses: actions/cache@v3 with: - name: ${{ env.TAG }} - path: /tmp + key: ${{ env.TAG }} + path: /tmp/${{ env.TAG }}.tar - name: Load Docker image run: |