Skip to content

Commit

Permalink
add cover
Browse files Browse the repository at this point in the history
  • Loading branch information
malinkang committed Nov 21, 2023
1 parent 01c9bf2 commit e810b5e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/weread.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,11 @@ jobs:
pip install -r requirements.txt
- name: weread sync
run: |
python weread.py "${{secrets.WEREAD_COOKIE}}" "${{secrets.NOTION_TOKEN}}" "${{secrets.NOTION_DATABASE_ID}}" "${{ github.ref }}" "${{ github.repository }}"
python weread.py "${{secrets.WEREAD_COOKIE}}" "${{secrets.NOTION_TOKEN}}" "${{secrets.NOTION_DATABASE_ID}}" "${{ github.ref }}" "${{ github.repository }}"
- name: Push Cover
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m 'add new cover' || echo "nothing to commit"
git push || echo "nothing to push"

0 comments on commit e810b5e

Please sign in to comment.