Skip to content

Commit

Permalink
Try and be forgiving on the git commit to allow no changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
grafikrobot committed Jan 25, 2025
1 parent 1609b7e commit cb14038
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/web-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,13 @@ jobs:
run: |
echo "using asciidoctor ;" > project-config.jam
b2 --debug-configuration -d+2 info pub
# - name: Commit Generated
# run: |
# git config user.email "ecosystemstandard@gmail.com"
# git config user.name "ecostd"
# git commit -m "Update generated information." CONTRIBUTORS.adoc
- name: Commit Generated
run: |
git config user.email "ecostd"
git config user.name "ecostd"
git add --verbose CONTRIBUTORS.adoc || exit 1
git commit -m "Update generated information."
git push || exit 1
- name: Setup Pages
uses: actions/configure-pages@main
- name: Upload artifact
Expand Down

0 comments on commit cb14038

Please sign in to comment.