diff --git a/.github/workflows/core-integration-test.yml b/.github/workflows/core-integration-test.yml index e33ffec3d5..87b1e91b1a 100644 --- a/.github/workflows/core-integration-test.yml +++ b/.github/workflows/core-integration-test.yml @@ -70,7 +70,6 @@ jobs: path: ${{ steps.go-cache-path.outputs.GO_CACHE_PATH }} - name: test - if: ${{ steps.cache.outputs.cache-hit != 'true' }} env: ZITADEL_MASTERKEY: MasterkeyNeedsToHave32Characters run: make core_integration_test @@ -94,7 +93,7 @@ jobs: - uses: actions/cache/save@v4 name: cache results - if: ${{ steps.cache.outputs.cache-hit != 'true' }} + if: always() with: key: integration-test-postgres-${{ inputs.core_cache_key }} path: ${{ steps.go-cache-path.outputs.GO_CACHE_PATH }}