File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 4646 latest_tag=$(git describe --tags --abbrev=0)
4747 echo "latest_tag=$(git describe --tags --abbrev=0)" >> "$GITHUB_ENV"
4848 echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_ENV"
49- tag_body=$(git tag -l "${latest_tag}" --format='%(contents:body)')
49+ EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
50+ echo "tag_body<<$EOF" >> "$GITHUB_ENV"
51+ git tag -l "${latest_tag}" --format='%(contents:body)' >> "$GITHUB_ENV"
52+ echo "$EOF" >> "$GITHUB_ENV"
5053 - name : Create GitHub Release 🚀
5154 uses : actions/create-release@v1
5255 env :
5659 release_name : Version ${{ env.latest_tag }}, ${{ env.date }}
5760 draft : false
5861 prerelease : false
59- body : Body is ${{ env.tag_body }}
62+ body : ${{ env.tag_body }}
You can’t perform that action at this time.
0 commit comments