From c40f700235a49a02fa6c4890270bdbecedf0c1f4 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Thu, 10 Mar 2022 18:39:36 -0800 Subject: [PATCH] Fix both deployment steps thanks @DasSkelett! --- .github/workflows/ksp-publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ksp-publish.yml b/.github/workflows/ksp-publish.yml index 43adcfe..38567e9 100644 --- a/.github/workflows/ksp-publish.yml +++ b/.github/workflows/ksp-publish.yml @@ -118,7 +118,7 @@ jobs: run: | curl -F "username=drewcassidy" -F "password=${{ secrets.SPACEDOCK_PASS }}" \ -c ./cookies "https://spacedock.info/api/login" - curl -c ./cookies \ + curl -c ./cookies -b ./cookies \ -F "version=$VERSION_TITLE" \ -F "changelog=$(yaclog show -mb)" \ -F "game-version=1.12.3" \ @@ -129,7 +129,9 @@ jobs: - name: Publish to Github uses: softprops/action-gh-release@v1 with: - files: bundled/ConformalDecals-*.zip bundled/ConformalDecals/GameData/ConformalDecals/Versioning/ConformalDecals.version + files: | + bundled/ConformalDecals-*.zip + ConformalDecals/GameData/ConformalDecals/Versioning/ConformalDecals.version body_path: RELEASE.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file