From: Sebastián Ramírez Date: Sun, 18 Oct 2020 19:51:51 +0000 (+0200) Subject: 🐛 Fix FastAPI People GitHub Action Docker dependencies (#2197) X-Git-Tag: 0.61.2~78 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68dc9bd5ace72a03359643e23f3689b1e25e7ba2;p=thirdparty%2Ffastapi%2Ffastapi.git 🐛 Fix FastAPI People GitHub Action Docker dependencies (#2197) --- diff --git a/.github/actions/people/Dockerfile b/.github/actions/people/Dockerfile index e0feb6933a..263f03c9d7 100644 --- a/.github/actions/people/Dockerfile +++ b/.github/actions/people/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.7 -RUN pip install httpx PyGithub "pydantic==1.5.1" "pyyaml>=5.3.1,,6.0.0" +RUN pip install httpx PyGithub "pydantic==1.5.1" "pyyaml>=5.3.1,6.0.0" COPY ./app /app diff --git a/.github/workflows/people.yml b/.github/workflows/people.yml index d09d820e1a..7ec6365932 100644 --- a/.github/workflows/people.yml +++ b/.github/workflows/people.yml @@ -6,7 +6,7 @@ on: workflow_dispatch: jobs: - deploy: + fastapi-people: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2