change how pipenv is installed to hopefully fix the fucking gitea workflow
All checks were successful
/ Connect to deployment host, update, and redeploy docs website. (push) Successful in 30s
/ Build static site, docker image, upload artifact... (push) Successful in 3m6s

This commit is contained in:
2025-11-16 07:42:23 -08:00
parent 7d6afe6c13
commit 1b83a58138

View File

@@ -39,14 +39,13 @@ jobs:
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
apt update apt update
apt upgrade -y apt upgrade -y
apt install -y curl tar p7zip-full python3.12 pip pipx apt install -y curl tar p7zip-full python3.12 pip pipenv
- -
name: Install pipenv, build blog... name: Install pipenv, build blog...
env: env:
PIPENV_USER: ${{ secrets.REGISTRY_USERNAME }} PIPENV_USER: ${{ secrets.REGISTRY_USERNAME }}
PIPENV_PASS: ${{ secrets.REGISTRY_TOKEN }} PIPENV_PASS: ${{ secrets.REGISTRY_TOKEN }}
run: | run: |
pipx install pipenv
pipenv install pipenv install
pipenv run blag build pipenv run blag build
- -