We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4b4dff commit ed146baCopy full SHA for ed146ba
1 file changed
.github/tpl/generate.tpl.yml
@@ -128,12 +128,8 @@ jobs:
128
if git diff --cached --quiet; then
129
echo "Nothing to commit, skipping push"
130
else
131
- BASEVM_LOG="$(cat /tmp/basevm-log.txt)"
132
- git commit -F- <<EOF
133
-Update ${{ github.repository }} from base-vm
134
-
135
-${BASEVM_LOG}
136
-EOF
+ printf "Update ${{ github.repository }} from base-vm\n\n%s\n" "$(cat /tmp/basevm-log.txt)" > /tmp/commit-msg.txt
+ git commit -F /tmp/commit-msg.txt
137
git pull --rebase --autostash
138
git push
139
fi
0 commit comments