Skip to content

Commit

Permalink
ppp
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellga committed Mar 24, 2024
1 parent e028b8c commit 00075c1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,13 @@ jobs:
cd docs
ls
if [[ -n $(git status --porcelain) ]]; then
echo "true" >> "$GITHUB_OUTPUT"
echo "CHANGES=true" >> "$GITHUB_OUTPUT";
fi
- name: Commit and push changes
if: steps.check_changes.outputs.GITHUB_ENV == 'true'
env:
CHANGES: ${{ steps.check_changes.outputs.CHANGES }}
if: CHANGES == 'true'
run: |
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
git config --global user.name "${GITHUB_ACTOR}"
Expand Down

0 comments on commit 00075c1

Please sign in to comment.