From a9baa01d35f36dbfa809379a08c80314b03aaed8 Mon Sep 17 00:00:00 2001 From: FeeeeK <26704473+FeeeeK@users.noreply.github.com> Date: Sun, 7 Jan 2024 20:19:51 +0300 Subject: [PATCH] Fix workflow run syntax [skip ci] --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d6feebf..c8ab942 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,9 +56,10 @@ jobs: if: env.STOP_WORKFLOW == 'false' env: GH_TOKEN: ${{ secrets.GH_PAT }} - run: > - gh release create ${{ env.VERSION }} - --title "Release ${{ env.VERSION }}" - --draft - ./publish/DLL-Release/LCAmmoCheck.dll + run: | + gh release create ${{ env.VERSION }} \ + --title "Release ${{ env.VERSION }}" \ + --notes "" \ + --draft \ + ./publish/DLL-Release/LCAmmoCheck.dll \ ./publish/Thunderstore-Release/LCAmmoCheck-${{ env.VERSION }}.zip