From f73fe05fe375ae945cc58167e9f733da6c55db85 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Wed, 10 Dec 2025 11:37:07 +0000 Subject: [PATCH] fix: proper newline commands in workflow --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6dec8c9..f16089c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -101,11 +101,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create Pull Request for release + next version - run: > - gh pr create - --title "build: release ${{ steps.bump.outputs.version }}" - --body "build: release ${{ steps.bump.outputs.version }}" - --base main + run: | + gh pr create \ + --title "build: release ${{ steps.bump.outputs.version }}" \ + --body "build: release ${{ steps.bump.outputs.version }}" \ + --base main \ --head "release/v${{ steps.bump.outputs.version }}" env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}