From fae166821574d682a2d01de5d67a576514785cf7 Mon Sep 17 00:00:00 2001 From: acheronfail Date: Wed, 10 Jan 2024 22:22:02 +1030 Subject: [PATCH] attempt to create GH release per run --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96432a0..0745122 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,6 +79,14 @@ jobs: cd scripts npm start -- --results ../artifact > summary.txt cat summary.txt + - name: Create Release + uses: softprops/action-gh-release@v1 + with: + name: ${{ github.run_number }} + body_path: summary.txt + files: ../artifact/*.json + draft: false + prerelease: false - uses: actions/upload-artifact@v3 with: path: scripts/summary.txt