Skip to content

Commit

Permalink
feat: comment out Markdown file combination step in release_data work…
Browse files Browse the repository at this point in the history
…flow
  • Loading branch information
jjjermiah committed Jan 22, 2025
1 parent 5efb8e8 commit 6dcceed
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
run: |
pixi run snake
- name: Combine Markdown files
run: |
# Combine all Markdown files into one with a newline after each file's content
combined_file="results/combined_summary.md"
find results -name "*_summary.md" -exec sh -c 'cat {} && echo ""' \; > "$combined_file"
echo "Combined Markdown written to $combined_file"
cat "$combined_file"
# - name: Combine Markdown files
# run: |
# # Combine all Markdown files into one with a newline after each file's content
# combined_file="results/combined_summary.md"
# find results -name "*_summary.md" -exec sh -c 'cat {} && echo ""' \; > "$combined_file"
# echo "Combined Markdown written to $combined_file"
# cat "$combined_file"

- name: Release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 6dcceed

Please sign in to comment.