From: Andrew Grimberg Date: Mon, 6 Nov 2023 23:16:50 +0000 (-0800) Subject: Fix: Run command should be a standard text fold X-Git-Tag: v0.15.1^0 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=169d91b941909003cecb9dc43fc9c6adeaa686ae;p=releng%2Fcommon-packer.git Fix: Run command should be a standard text fold Using >- breaks as it tells the yaml parser to stick all lines together as a single command which is incorrect. Issue: RELENG-4974 Change-Id: I5d362c44efc948242edb40619a731f0096625ec4 Signed-off-by: Andrew Grimberg --- diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 421cb3e..2e3a057 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -44,7 +44,7 @@ jobs: with: python-version: "3.8" - name: Generate reno report - run: >- + run: | # fetch last 30 changes git fetch --depth=30 pipx run tox -e reno -- report \ @@ -62,7 +62,7 @@ jobs: sed '1d' > modified-reno-notes.md fi - name: Create Release Notes - run: >- + run: | gh release create ${{ steps.tag.outputs.tag }} --generate-notes \ -F modified-reno-notes.md env: