Skip to content

Commit cb14038

Browse files
committed
Try and be forgiving on the git commit to allow no changes.
1 parent 1609b7e commit cb14038

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/web-publish.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,13 @@ jobs:
5959
run: |
6060
echo "using asciidoctor ;" > project-config.jam
6161
b2 --debug-configuration -d+2 info pub
62-
# - name: Commit Generated
63-
# run: |
64-
# git config user.email "[email protected]"
65-
# git config user.name "ecostd"
66-
# git commit -m "Update generated information." CONTRIBUTORS.adoc
62+
- name: Commit Generated
63+
run: |
64+
git config user.email "ecostd"
65+
git config user.name "ecostd"
66+
git add --verbose CONTRIBUTORS.adoc || exit 1
67+
git commit -m "Update generated information."
68+
git push || exit 1
6769
- name: Setup Pages
6870
uses: actions/configure-pages@main
6971
- name: Upload artifact

0 commit comments

Comments
 (0)