Skip to content

Commit

Permalink
fixing actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aceisace committed Jun 3, 2023
1 parent 5d1a601 commit 9b72462
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,18 @@ jobs:
cd docsource && make html
make github
cd ..
- name: Configure Git
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
- name: Commit and Push Changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: main
commit_message: auto-generated docs
commit_options: '--no-verify'
push_options: --force
run: |
cd docs/
git init
git add -A
git commit -m "Update documentation"
git push --force --quiet "https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}"
- name: Setup test environment and run tests
env:
OPENWEATHERMAP_API_KEY: ${{ secrets.OPENWEATHERMAP_API_KEY }}
Expand Down

0 comments on commit 9b72462

Please sign in to comment.