From 31ca0426c94db6cfae835d783981e6124a022b81 Mon Sep 17 00:00:00 2001 From: Balackburn <93828569+Balackburn@users.noreply.github.com> Date: Tue, 4 Jul 2023 18:34:29 +0200 Subject: [PATCH] possible sed command fix --- .github/workflows/buildapp.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/buildapp.yml b/.github/workflows/buildapp.yml index 088c64c..7cfb64e 100644 --- a/.github/workflows/buildapp.yml +++ b/.github/workflows/buildapp.yml @@ -144,10 +144,8 @@ jobs: - name: Prepare Release Notes run: | export TODAY=$(date '+%Y-%m-%d') - sed -e "s/%CERCUBE_VERSION%/${{ inputs.cercube_version }}/g" \ - -e "s/%YOUTUBE_VERSION%/${{ inputs.youtube_version }}/g" \ - -e "s/%DATE%/$TODAY/g" \ - main/.github/RELEASE_TEMPLATE/Release.md > ${{ github.workspace }}/release_notes.md + sed "s/%cercube_version%/${{ inputs.cercube_version }}/g; s/%youtube_version%/${{ inputs.youtube_version }}/g; s/%date%/$TODAY/g" \ + main/.github/RELEASE_TEMPLATE/Release.md > ${{ github.workspace }}/release_notes.md - name: Create Release id: create_release