ci: fix pip invocation

This commit is contained in:
Daike Yu 2025-03-06 03:28:09 +01:00
parent 675d58201b
commit 15360cf93e

View File

@ -32,7 +32,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
pip3 install -r release_tools/requirements.txt pip install --break-system-packages -r release_tools/requirements.txt
- name: Checkout obs-build - name: Checkout obs-build
uses: https://github.com/actions/checkout@v4 uses: https://github.com/actions/checkout@v4
@ -75,5 +75,5 @@ jobs:
PR_CREATED_AT: ${{ github.event.pull_request.created_at }} PR_CREATED_AT: ${{ github.event.pull_request.created_at }}
PR_DESCRIPTION: ${{ github.event.pull_request.body }} PR_DESCRIPTION: ${{ github.event.pull_request.body }}
run: | run: |
python check_source.py --scm-type=Action --platform=Action --debug -A http://localhost:3000 action # set OBS API address to http://localhost:3000 just in case python3 check_source.py --scm-type=Action --platform=Action --debug -A http://localhost:3000 action # set OBS API address to http://localhost:3000 just in case
working-directory: release_tools working-directory: release_tools