Browse Source

ci: fix in Jammy x86_64 package [build]

Sergey Nikolaev 1 year ago
parent
commit
76972e9e2f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/test.yml

+ 2 - 2
.github/workflows/test.yml

@@ -427,14 +427,14 @@ jobs:
           fi
 
       - name: Upload build artifacts from cache
-        if: ${{ steps.cache.outputs.cache-hit == 'true' }}
+        if: ${{ steps.override-cache-hit.outputs.cache-hit == 'true' }}
         uses: manticoresoftware/upload_artifact_with_retries@v4
         with:
           name: build_jammy_RelWithDebInfo_x86_64
           path: "build/manticore*deb"
 
   pack_jammy:
-    needs: pack_jammy_cache_check
+    needs: [pack_jammy_cache_check, changes]
     if: |
       needs.pack_jammy_cache_check.outputs.cache-hit != 'true' ||
       needs.changes.outputs.source == 'true'