From f79c23f77427d390f1524df5839b8a91a3a4f9b4 Mon Sep 17 00:00:00 2001 From: Will G Date: Mon, 27 Nov 2023 19:39:08 -0500 Subject: [PATCH] Fix asset upload on release --- .github/workflows/release_created.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_created.yml b/.github/workflows/release_created.yml index ee53b13..3778239 100644 --- a/.github/workflows/release_created.yml +++ b/.github/workflows/release_created.yml @@ -53,11 +53,11 @@ jobs: runs-on: ubuntu-latest needs: [pyinstaller-build] steps: - - name: Checkout code - uses: actions/checkout@v2 - uses: actions/download-artifact@v3 + - name: Display structure of downloaded files + run: ls -alR - name: Zip MacOS output - run: zip -r9 RBSAgent.app RBSAgent.app/RBSAgent.app + run: cd RBSAgent.app && mv RBSAgent.app RBSAgent zip -r9 RBSAgent RBSAgent.app && cd .. - name: Display structure of downloaded files run: ls -alR - name: Upload Release Asset Windows