Skip to content

Commit

Permalink
- fix prod service name in Makefile (#292)
Browse files Browse the repository at this point in the history
fix prod service name in Makefile
  • Loading branch information
mtracz authored Mar 15, 2023
1 parent 0e22c58 commit bcdd858
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
cache-from: type=gha, ref=ghcr.io/${{ github.repository_owner }}/toby-prod-build-cache
cache-to: type=gha, ref=ghcr.io/${{ github.repository_owner }}/toby-prod-build-cache, mode=max

- uses: appleboy/[email protected].5
- uses: appleboy/[email protected].8
env:
BRANCH_NAME: "main"
with:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ beta-reload-config:
prod-deploy: create-deployment-file
docker compose --file ${DOCKER_COMPOSE_PROD_FILENAME} up --force-recreate --detach && \
echo "App post deploy actions" && \
${PROD_DOCKER_EXEC} toby-prod-php bash post-deploy-actions.sh
${PROD_DOCKER_EXEC} toby-prod-app bash post-deploy-actions.sh

prod-reload-config:
echo "App config reload" && \
${PROD_DOCKER_EXEC} toby-prod-php bash reload-config.sh
${PROD_DOCKER_EXEC} toby-prod-app bash reload-config.sh


DEPLOYMENT_PROJECT_VERSION = $(shell ./environment/scripts/version.sh --long)
Expand Down

0 comments on commit bcdd858

Please sign in to comment.