From c643dfa494654f9aa6563210faac7470f4e88e6e Mon Sep 17 00:00:00 2001 From: alk <45172705+altalk23@users.noreply.github.com> Date: Tue, 1 Aug 2023 19:22:56 +0300 Subject: [PATCH] The zip action doesn't support lists apparently?? --- .github/workflows/build.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a31343b28..712e3e87b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -152,19 +152,13 @@ jobs: - name: Zip MacOS artifacts uses: vimtor/action-zip@v1 with: - files: | - geode-mac/Geode.dylib - geode-mac/GeodeBootstrapper.dylib + files: geode-mac/Geode.dylib geode-mac/GeodeBootstrapper.dylib dest: geode-${{ env.SHA_SHORT }}-mac.zip - name: Zip Windows artifacts uses: vimtor/action-zip@v1 with: - files: | - geode-win/XInput9_1_0.dll - geode-win/Geode.dll - geode-win/GeodeUpdater.exe - geode-win/Geode.lib + files: geode-win/XInput9_1_0.dll geode-win/Geode.dll geode-win/GeodeUpdater.exe geode-win/Geode.lib dest: geode-${{ env.SHA_SHORT }}-win.zip - name: Update Nightly Release