From 1c6ef07b9b2f34680b167132bedaa3f9cc54d7f9 Mon Sep 17 00:00:00 2001 From: Dennis Wendland Date: Wed, 10 Aug 2022 14:56:22 +0200 Subject: [PATCH] Fix commit on release when there is no update --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9fb15ad..04d9a09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" - git commit -m "New Release: Update Submodules" -a + git commit -m "New Release: Update Submodules" -a || echo "New Release: No updates to submodules" - name: Push changes uses: ad-m/github-push-action@master