Skip to content

Commit db69cf1

Browse files
authored
Merge pull request #222 from 3pillarlabs/develop
Delimit multi line comments
2 parents e1f5cbb + 6d282f6 commit db69cf1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
./.github/workflows/build.sh ${{ env.release_version }}
2121
- name: Get commit message
2222
run: |
23-
echo "commit_message='$(git log --format=%B -n 1 ${{ github.sha }})'" >> $GITHUB_ENV
23+
echo 'commit_message<<EOF' >> $GITHUB_ENV
24+
git log --format=%B -n 1 ${{ github.sha }} >> $GITHUB_ENV
25+
echo 'EOF' >> $GITHUB_ENV
2426
- name: Create release
2527
id: create_release
2628
uses: actions/create-release@latest

0 commit comments

Comments
 (0)