From e0523d30c387a5aba2e626f00ef9425a0c514100 Mon Sep 17 00:00:00 2001 From: Jermiah Date: Wed, 22 Jan 2025 19:03:56 +0000 Subject: [PATCH] feat: remove Markdown file combination step from release_data workflow --- .github/workflows/release_data.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/release_data.yml b/.github/workflows/release_data.yml index be21a5a..d3b6f78 100644 --- a/.github/workflows/release_data.yml +++ b/.github/workflows/release_data.yml @@ -44,14 +44,6 @@ 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: Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') @@ -60,5 +52,3 @@ jobs: ./results/*.tar.gz body_path: results/combined_summary.md make_latest: true - # body: | - # $(cat results/combined_summary.md) \ No newline at end of file