Skip to content

Commit

Permalink
fix: "No module named 'ddddocr'"
Browse files Browse the repository at this point in the history
  • Loading branch information
paigeman committed Jun 20, 2024
1 parent d8ab3e5 commit 6191993
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jietiandi-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
PASSWORD: ${{ secrets.JIETIANDI_PASSWORD }}
run: |
chmod u+x post.py
./post.py
python ./post.py
working-directory: jietiandi

4 changes: 2 additions & 2 deletions .github/workflows/jietiandi-prod-post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
- name: Install requirements
run: pip install -r requirements.txt
run: pip3 install -r requirements.txt
working-directory: jietiandi
- name: Post
env:
USERNAME: ${{ secrets.JIETIANDI_USERNAME }}
PASSWORD: ${{ secrets.JIETIANDI_PASSWORD }}
run: |
chmod u+x post.py
./post.py
python ./post.py
working-directory: jietiandi

4 changes: 2 additions & 2 deletions .github/workflows/jietiandi-prod-sign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
- name: Install requirements
run: pip install -r requirements.txt
run: pip3 install -r requirements.txt
working-directory: jietiandi
- name: Sign
env:
USERNAME: ${{ secrets.JIETIANDI_USERNAME }}
PASSWORD: ${{ secrets.JIETIANDI_PASSWORD }}
run: |
chmod u+x sign.py
./sign.py
python ./sign.py
working-directory: jietiandi

0 comments on commit 6191993

Please sign in to comment.