fix(gitlab_release): ci image is alpine, use '/bin/sh' and add the changlogs to git cache for commiting

#1
This commit is contained in:
2021-08-04 10:46:25 +09:30
parent 2035ed27af
commit ed5be7fd3c
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
@ -15,5 +15,7 @@ for D in *; do
echo "" >> ${D}/CHANGELOG.md
echo "$CHANGELOG_DATA" >> ${D}/CHANGELOG.md
git add ${D}/CHANGELOG.md
fi
done