From c4ba10158d8065011a91ee731d5d4104e47c5a5a Mon Sep 17 00:00:00 2001 From: ohuu Date: Tue, 27 Aug 2024 16:52:56 +0100 Subject: [PATCH] fixed line endings for long gh command --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bea47cf..fe672bd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -130,12 +130,12 @@ jobs: merge-multiple: true - name: Create release run: | - gh release create ${{ github.ref_name }} --draft --title "Release ${{ github.ref_name }}" --notes "" | - artifacts/cardamon-x86_64-unknown-linux-gnu-${{ github.ref_name }}.tgz | - artifacts/cardamon-x86_64-unknown-linux-gnu-${{ github.ref_name }}.tgz.sha256 | - artifacts/cardamon-x86_64-pc-windows-msvc-${{ github.ref_name }}.zip | - artifacts/cardamon-x86_64-pc-windows-msvc-${{ github.ref_name }}.zip.sha256 | - artifacts/cardamon-aarch64-apple-darwin-${{ github.ref_name }}.tgz | + gh release create ${{ github.ref_name }} --draft --title "Release ${{ github.ref_name }}" --notes "" \ + artifacts/cardamon-x86_64-unknown-linux-gnu-${{ github.ref_name }}.tgz \ + artifacts/cardamon-x86_64-unknown-linux-gnu-${{ github.ref_name }}.tgz.sha256 \ + artifacts/cardamon-x86_64-pc-windows-msvc-${{ github.ref_name }}.zip \ + artifacts/cardamon-x86_64-pc-windows-msvc-${{ github.ref_name }}.zip.sha256 \ + artifacts/cardamon-aarch64-apple-darwin-${{ github.ref_name }}.tgz \ artifacts/cardamon-aarch64-apple-darwin-${{ github.ref_name }}.tgz.sha256 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}