Skip to content

Commit

Permalink
wip2
Browse files Browse the repository at this point in the history
  • Loading branch information
gwaramadze committed Jul 29, 2024
1 parent 27e7bcb commit 380e2ae
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,23 @@ jobs:
git diff
cd docs/build
python build.py
git diff --quiet && DIFF=false || DIFF=true
echo $DIFF
echo "diff=$DIFF" >> $GITHUB_OUTPUT
- name: Commit and push changes
if: steps.generate.outputs.diff == 'true'
run: |
echo $GITHUB_OUTPUT
git checkout -b update-docs
git add docs/api-reference
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git commit -m "Update documentation"
git push -u origin update-docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
git diff
# git diff --quiet && DIFF=false || DIFF=true
# echo $DIFF
# echo "diff=$DIFF" >> $GITHUB_OUTPUT

# - name: Commit and push changes
# if: steps.generate.outputs.diff == 'true'
# run: |
# echo $GITHUB_OUTPUT
# git checkout -b update-docs
# git add docs/api-reference
# git config --global user.name 'github-actions'
# git config --global user.email '[email protected]'
# git commit -m "Update documentation"
# git push -u origin update-docs
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# - name: Create Pull Request
# uses: peter-evans/create-pull-request@v6
Expand Down

0 comments on commit 380e2ae

Please sign in to comment.