From fd3c5320e439181e728f22920aa9d39eca1c4e07 Mon Sep 17 00:00:00 2001 From: Alexander Kuzmenkov <36882414+akuzm@users.noreply.github.com> Date: Thu, 30 Jul 2026 14:55:00 +0200 Subject: [PATCH] Fix wrong step name in linux build Github Action I forgot to rename a step in the condition for some other step. --- .github/workflows/linux-build-and-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-build-and-test.yaml b/.github/workflows/linux-build-and-test.yaml index 7466fafabb5..03615e8e9fa 100644 --- a/.github/workflows/linux-build-and-test.yaml +++ b/.github/workflows/linux-build-and-test.yaml @@ -171,7 +171,7 @@ jobs: key: "${{ matrix.os }}-postgresql-${{ matrix.pg }}-${{ matrix.cc }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('.github/**') }}${{ env.CACHE_SUFFIX }}" - name: Upload config.log - if: always() && steps.cache-postgresql.outputs.cache-hit != 'true' + if: always() && steps.restore-postgresql-cache.outputs.cache-hit != 'true' uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: config.log for PostgreSQL ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}