1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2025-01-05 01:20:39 +02:00

Revert partially commands in 'Publish' workflow

This commit is contained in:
Álvaro Mondéjar 2021-01-24 13:34:55 +01:00
parent 02ca61f089
commit 576a7fe135

View File

@ -47,10 +47,9 @@ jobs:
- name: Get release title and body
id: release
run: |
COMMIT_MSG="$(printf "${{ steps.commit.outputs.git-message }}")"
RELEASE_TITLE="$(printf "$COMMIT_MSG" | head -n 1)"
RELEASE_TITLE=$(echo '${{ steps.commit.outputs.git-message }}' | head -n 1)
echo "::set-output name=title::$RELEASE_TITLE"
RELEASE_BODY="$(printf "$COMMIT_MSG" | tail -n +3)"
RELEASE_BODY=$(echo '${{ steps.commit.outputs.git-message }}' | tail -n +3)
echo "::set-output name=body::$RELEASE_BODY"
- name: Get release version
id: get-version