Skip to content

Commit

Permalink
ci: 修复 bot_check 工作流中的 apt-get 命令
Browse files Browse the repository at this point in the history
- 修正了 sudo apt-get install 命令中的包名依赖项
- 删除了多余的空格,确保命令格式正确
  • Loading branch information
molanp committed Dec 15, 2024
1 parent d540f39 commit 46a6e7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bot_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
if: steps.cache-playwright.outputs.cache-hit != 'true'
run: |
sudo apt-get update
sudoapt-get install -y libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-libav flite x264 libx264-dev
sudo apt-get install -y libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-libav flite x264 libx264-dev
poetry run pip install playwright
poetry run playwright install
Expand Down

0 comments on commit 46a6e7f

Please sign in to comment.