From 69549dd86f773651306c5e5403a8a36c1f2ed602 Mon Sep 17 00:00:00 2001 From: DmitriyLewen Date: Mon, 30 Sep 2024 14:16:44 +0600 Subject: [PATCH] ci: fix vm images dir --- .github/workflows/cache-test-images.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cache-test-images.yaml b/.github/workflows/cache-test-images.yaml index 22f706430e58..823206f56e2c 100644 --- a/.github/workflows/cache-test-images.yaml +++ b/.github/workflows/cache-test-images.yaml @@ -35,7 +35,7 @@ jobs: echo "digest=$DIGEST" >> $GITHUB_OUTPUT ## We need to save test image cache only for main branch - - name: Save test images from cache + - name: Save test images into cache if: github.ref == 'refs/heads/main' uses: actions/cache/save@v4 with: @@ -72,9 +72,9 @@ jobs: echo "digest=$DIGEST" >> $GITHUB_OUTPUT ## We need to save test VM image cache only for main branch - - name: Save test VM images from cache + - name: Save test VM images into cache if: github.ref == 'refs/heads/main' uses: actions/cache/save@v4 with: - path: integration/testdata/fixtures/images + path: integration/testdata/fixtures/vm-images key: cache-test-vm-images-${{ steps.image-digest.outputs.digest }} \ No newline at end of file