feat: install python in ci container
Some checks failed
/ build (push) Successful in 24s
/ upload (push) Failing after 23s

This commit is contained in:
s3lph 2023-11-13 23:29:56 +01:00
parent afe98b5eae
commit 95fd5940ef
Signed by: s3lph
GPG key ID: 0AA29A52FB33CFB5
2 changed files with 4 additions and 2 deletions

View file

@ -8,6 +8,8 @@ jobs:
steps:
- uses: https://code.forgejo.org/actions/checkout@v3
- run: |
pip install -r requirements.txt
apt update
apt install --yes python3-pip
pip3 install -r requirements.txt
./build.py

View file

@ -12,7 +12,7 @@ jobs:
- uses: https://code.forgejo.org/actions/checkout@v3
- run: |
apt-get update
apt-get install --yes --no-install-recommends rsync openssh-client
apt-get install --yes --no-install-recommends rsync openssh-client python3-pip
pip3 install -r requirements.txt
./build.py
mkdir -p .ssh && chmod 0700 .ssh