Uses git add.

pull/1/head
Tommie Gannert 2021-09-11 11:49:12 +02:00
parent b4a1d9904b
commit a998c72800
1 changed files with 10 additions and 10 deletions

View File

@ -30,17 +30,17 @@ main() {
wget --header='Accept: application/octet-stream' -O"$name" "$url" wget --header='Accept: application/octet-stream' -O"$name" "$url"
reprepro -b ../debian includedeb unstable "$name" reprepro -b ../debian includedeb unstable "$name"
done done
if has_changes ../debian/{db,dists,pool}; then
git \
-c 'user.email=41898282+github-actions[bot]@users.noreply.github.com' \
-c 'user.name=github-actions[bot]' \
commit -m "Included release $release_repo@$(cat latest.json | jq -r '.name | ltrimstr("v")')." \
../debian/{db,dists,pool}
else
echo 'No updates to commit.'
fi
) )
if has_changes debian/{db,dists,pool}; then
git add debian/{db,dists,pool}
git \
-c 'user.email=41898282+github-actions[bot]@users.noreply.github.com' \
-c 'user.name=github-actions[bot]' \
commit -m "Included release $release_repo@$(cat "$tmpd/latest.json" | jq -r '.name | ltrimstr("v")')."
else
echo 'No updates to commit.'
fi
} }
main main