Skip to content

Commit

Permalink
deploy: always pull newer image for Dockerfile base
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Jan 24, 2024
1 parent c89c293 commit 39f86c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
git reset --hard
git checkout ${{ github.ref_name }}
git pull
docker compose build
docker compose build --pull
docker compose pull
docker compose up -d
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
git reset --hard
git checkout ${{ github.ref_name }}
git pull
docker compose build
docker compose build --pull
docker compose pull
docker compose up -d

0 comments on commit 39f86c0

Please sign in to comment.