We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 865838f commit 8ed2767Copy full SHA for 8ed2767
1 file changed
.github/workflows/dunedaq-develop-cpp-ci.yml
@@ -227,9 +227,17 @@ jobs:
227
228
echo "run_id=$run_id" >> "$GITHUB_OUTPUT"
229
230
+ - name: List artifacts on the target run
231
+ env:
232
+ GH_TOKEN: ${{ github.token }}
233
+ run: |
234
+ gh api repos/DUNE-DAQ/hdf5libs/actions/runs/${{ steps.latest_nightly.outputs.run_id }}/artifacts \
235
+ --jq '.artifacts[] | [.name, .expired, .size_in_bytes] | @tsv'
236
+
237
- name: Download latest nightly linting results
238
uses: actions/download-artifact@main
239
with:
240
+ github-token: ${{ github.token }}
241
name: nightly_linting_results
242
run-id: ${{ steps.latest_nightly.outputs.run_id }}
243
0 commit comments