Skip to content

Commit

Permalink
Add additional step to Download action to get easy access to the Next…
Browse files Browse the repository at this point in the history
…flow logfile for debugging.
  • Loading branch information
MatthiasZepper committed Jan 28, 2025
1 parent 9bf24be commit f933e58
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ jobs:
echo "IMAGE_COUNT_AFTER=$image_count" >> "$GITHUB_OUTPUT"
- name: Compare container image counts
id: count_comparison
run: |
if [ "${{ steps.count_initial.outputs.IMAGE_COUNT_INITIAL }}" -ne "${{ steps.count_afterwards.outputs.IMAGE_COUNT_AFTER }}" ]; then
initial_count=${{ steps.count_initial.outputs.IMAGE_COUNT_INITIAL }}
Expand All @@ -123,4 +124,10 @@ jobs:
exit 1
else
echo "The pipeline can be downloaded successfully!"
fi{% endraw %}{% endif %}
fi{% endraw %}
- name: Upload Nextflow logfile for debugging purposes
uses: actions/upload-artifact@v4
with:
name: nextflow_logfile.txt
path: .nextflow.log{% endif %}

0 comments on commit f933e58

Please sign in to comment.