From 41b15477fb1b528580ce4202ecc22fed242cdd85 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Wed, 9 Mar 2022 22:03:06 -0800 Subject: [PATCH] More shenanigans --- .github/workflows/ksp-publish.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ksp-publish.yml b/.github/workflows/ksp-publish.yml index 059061f..706135a 100644 --- a/.github/workflows/ksp-publish.yml +++ b/.github/workflows/ksp-publish.yml @@ -108,8 +108,10 @@ jobs: - name: Zip Download Packages run: | - zip -r ConformalDecals-$VERSION_TITLE-unbundled.zip ConformalDecals-unbundled/* - zip -r ConformalDecals-$VERSION_TITLE.zip ConformalDecals/* + mkdir bundled + mkdir unbundled + zip -r bundled/ConformalDecals-$VERSION_TITLE.zip ConformalDecals/* + zip -r unbundled/ConformalDecals-$VERSION_TITLE.zip ConformalDecals-unbundled/* ls - name: Publish to Spacedock @@ -127,8 +129,7 @@ jobs: - name: Publish to Github uses: softprops/action-gh-release@v1 with: - files: ConformalDecals-${{ env.VERSION_TITLE }}.zip ConformalDecals*/GameData/ConformalDecals/Versioning/ConformalDecals.version - name: ${{ env.VERSION_TITLE }} + files: bundled/ConformalDecals-*.zip bundled/ConformalDecals/GameData/ConformalDecals/Versioning/ConformalDecals.version body_path: RELEASE.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file