This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/attic.git
The following commit(s) were added to refs/heads/main by this push: new dac0e1e don't fail if nothing to commit dac0e1e is described below commit dac0e1e37632c86d92b8e33d937cd33bcfae93ed Author: Hervé Boutemy <hbout...@apache.org> AuthorDate: Sun Apr 13 20:51:12 2025 +0200 don't fail if nothing to commit --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 490e773..13a9107 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,5 +53,4 @@ jobs: echo "Running git add" git add . echo "Running git commit" - git commit -m "Regenerated website based on ${GITHUB_SHA} commit" - git push origin asf-site + git commit -m "Regenerated website based on ${GITHUB_SHA} commit" && git push origin asf-site