From 0cf988818e1bec96ef82f6dbef5d9b191708ff93 Mon Sep 17 00:00:00 2001 From: Laura Abbott Date: Fri, 20 Sep 2024 09:44:16 -0400 Subject: [PATCH] Okay yeah we should just keep the prep --- .github/workflows/release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 212760c5d..37e94c3ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,15 @@ jobs: uses: actions/download-artifact@v4 with: path: out + - name: prep + run: | + OUT=${{ steps.grab.outputs.download-path }} + for build in `ls $OUT`; do + for f in `ls $OUT/$build`; do + mv $OUT/$build/$f $OUT/$f.zip + done + done + - name: cut release uses: softprops/action-gh-release@v1