]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🐛 Fix FastAPI People GitHub Action Docker dependencies (#2197)
authorSebastián Ramírez <tiangolo@gmail.com>
Sun, 18 Oct 2020 19:51:51 +0000 (21:51 +0200)
committerGitHub <noreply@github.com>
Sun, 18 Oct 2020 19:51:51 +0000 (21:51 +0200)
.github/actions/people/Dockerfile
.github/workflows/people.yml

index e0feb6933ac4fe6aa814dabb2cca7571b8e5a030..263f03c9d7f673736b0e096c332d23940d7daf59 100644 (file)
@@ -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
 
index d09d820e1aa9352c50d507dc86b27600b09c3e39..7ec6365932727473b3ec256abc424b4c40392982 100644 (file)
@@ -6,7 +6,7 @@ on:
   workflow_dispatch:
 
 jobs:
-  deploy:
+  fastapi-people:
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v2