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

@ -8,7 +8,7 @@ This job provides the following badge:
## Dependencies
- None
- This job will only run if all previous jobs run.
## your .gitlab-ci.yml changes
To use this job add the following to your `.gitlab-ci.yml` file

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