Skip to content

Commit

Permalink
v0.0.89 fix errors automatic docs
Browse files Browse the repository at this point in the history
  • Loading branch information
annaabsi committed Jun 21, 2021
1 parent 43f6ce4 commit 3123f94
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
steps:
- name: checkout repo content
uses: actions/checkout@v2
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

- name: setup python
uses: actions/setup-python@v2
Expand All @@ -25,16 +28,14 @@ jobs:
run: |
python -m pdoc pipewire_python/ --docformat google --output-directory docs/html/ --edit-url pipewire_python=https://github.com/pablodz/pipewire_python/tree/main/pipewire_python/
- name: commit the daily updates
- name: commit files
run: |
git pull
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit --allow-empty -m "pdoc updated to latest release" -a
- name: push my changes
uses: ad-m/github-push-action@v0.6.0
- name: push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
branch: ${{ github.ref }}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.0.89 (2021-06-21)

Automatic documentation fix


# v0.0.85 (2021-06-21)

All documentation online
Expand Down
2 changes: 1 addition & 1 deletion pipewire_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Python version, player and recorder via pipewire's commands
"""

__version__ = "0.0.86"
__version__ = "0.0.89"

import sys

Expand Down

0 comments on commit 3123f94

Please sign in to comment.