This commit is contained in:
Oscar Krause 2022-12-29 07:37:17 +01:00
parent aa76ba5650
commit a6ac58d12c
2 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ test:archlinux:
artifacts: true
script:
- pacman -Sy
- pacman -U --noconfirm fastapi-dls-*.pkg.tar.zs
- pacman -U --noconfirm *.pkg.tar.zs
deploy:docker:
stage: deploy

View File

@ -20,7 +20,7 @@ from starlette.responses import StreamingResponse, JSONResponse, HTMLResponse
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from app.util import load_key, load_file
from util import load_key, load_file
from orm import Origin, Lease, init as db_init
logger = logging.getLogger()