Skip to content

Commit

Permalink
Merge pull request ceph#250 from baum/push-to-registry-fix
Browse files Browse the repository at this point in the history
Fix push-to-registry
  • Loading branch information
baum authored Oct 4, 2023
2 parents 666cd04 + bda50c7 commit 5b936c6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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:
Expand Down

0 comments on commit 5b936c6

Please sign in to comment.