File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -66,13 +66,17 @@ jobs:
6666 username : ${{ github.repository_owner }}
6767 password : ${{ secrets.GITHUB_TOKEN }}
6868
69+ - name : Checkout repository
70+ uses : actions/checkout@v5
71+
6972 - name : Build and push Docker images
7073 uses : docker/build-push-action@v6
7174 env :
7275 DATABASE_URL : ${{ secrets.DATABASE_URL }}
7376 dockerhub_repository : ${{ vars.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}
7477 version : ${{ needs.tag-commit.outputs.version }}
7578 with :
79+ context : .
7680 secret-envs : database-url=DATABASE_URL
7781 push : true
7882 provenance : mode=max
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ RUN mv /root/.cache/prisma-python/binaries/*/*/node_modules/prisma/query-engine-
2121 rm -rf \
2222 /root/.cache \
2323 /root/.npm \
24- /tmp \
24+ /tmp/* \
2525 /app/requirements.txt \
2626 /app/schema.prisma
2727
Original file line number Diff line number Diff line change 22
33from dotenv import load_dotenv
44
5- __version__ = "8.23.6 "
5+ __version__ = "8.23.7 "
66
77load_dotenv ()
88TESTING = bool (getenv ("TESTING" ))
You can’t perform that action at this time.
0 commit comments