Skip to content

Commit 250ed8e

Browse files
committed
The git add should abort, but not fail, in case of no-op.
1 parent cb14038 commit 250ed8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/web-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ jobs:
6363
run: |
6464
git config user.email "ecostd"
6565
git config user.name "ecostd"
66-
git add --verbose CONTRIBUTORS.adoc || exit 1
66+
git add --verbose CONTRIBUTORS.adoc || exit 0
6767
git commit -m "Update generated information."
68-
git push || exit 1
68+
git push
6969
- name: Setup Pages
7070
uses: actions/configure-pages@main
7171
- name: Upload artifact

0 commit comments

Comments
 (0)