From bda50c7057d228284f3da59f57e0ec82f8cc6c32 Mon Sep 17 00:00:00 2001 From: Alexander Indenbaum Date: Wed, 4 Oct 2023 12:11:43 +0300 Subject: [PATCH] Fix bad merge in SHA deffe91c784fcc1515b1260ef455f7aa1f82670a Signed-off-by: Alexander Indenbaum --- .github/workflows/build-container.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index ebd58bed..51c9f457 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -412,14 +412,14 @@ jobs: id: check_coredumps uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2, pinned to SHA for security reasons with: - files: "/var/lib/systemd/coredump/*" + files: "/tmp/coredump/core.*" - name: Upload demo core dumps if: steps.check_coredumps.outputs.files_exists == 'true' uses: actions/upload-artifact@v1 with: name: ceph_nvmeof_demo_cores-${{ github.run_number }} - path: /var/lib/systemd/coredump/* + path: /tmp/coredump/core.* - name: Display logs if: success() || failure() @@ -437,6 +437,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Download container images uses: actions/download-artifact@v3 with: