From 59b23db88266e235d3f09bb3e5d877686f1daffb Mon Sep 17 00:00:00 2001 From: Federico Stagni Date: Wed, 10 Jul 2024 18:28:45 +0200 Subject: [PATCH] Update nightly.yml --- .github/workflows/nightly.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 85a0e97e..01196fce 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -31,22 +31,21 @@ jobs: - name: create artifacts run: | - ls -l - ls -l Pilot mkdir tmp_dir cp Pilot/*.py tmp_dir cp tests/pilot.json tmp_dir - ls -l tmp_dir # create the tar cd tmp_dir tar -cf pilot.tar *.py # make the checksums file sha512sum pilot.tar pilot.json *.py > checksums.sha512 - ls -l + cd .. + cp tmp_dir/checksums.sha512 . + cp tmp_dir/pilot.tar . - name: upload artifacts uses: actions/upload-artifact@v4 with: name: Pilot_${{ matrix.branch }} - path: tmp_dir/pilot.tar tmp_dir/checksums.sha512 + path: pilot.tar checksums.sha512 retention-days: 2