Delete obsolete cicd script

This commit is contained in:
Roman Zabaluev 2022-01-28 17:18:35 +03:00 committed by GitHub
parent d0cd3795be
commit 91a99794bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +0,0 @@
#!/bin/bash
last_tag=$(git describe --tags --abbrev=0)
if [ -z "$last_tag" ]; then
last_tag="HEAD"
else
last_tag="$last_tag..HEAD"
fi
commits_list=$(git --no-pager log $last_tag --oneline --pretty=format:"- %s\\n" | uniq | tr -d '\n' | sed 's/\"/\\"/g')
echo '{"tag_name":"'$1'","name":"'$1'","body":"'$commits_list'"}' > /tmp/release.json