ci: use pip with --root-user-action to suppress warnings
All checks were successful
Build / Upload to production (push) Successful in 1m44s

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2025-06-01 13:38:22 +03:00
parent 0bb5bc3634
commit 94953d881d
Signed by: mctaylors
GPG key ID: D9D662D603AD75E8

View file

@ -17,8 +17,8 @@ jobs:
python-version: '3.13' python-version: '3.13'
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install -r requirements.txt pip install --root-user-action ignore -r requirements.txt
pip install pyinstaller pip install --root-user-action ignore pyinstaller
- name: Build binary - name: Build binary
run: pyinstaller --onefile main.py run: pyinstaller --onefile main.py
- name: Set up SSH key - name: Set up SSH key