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