Skip to content

Commit

Permalink
implement second stage: push to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
mmtftr committed Oct 15, 2024
1 parent f35307c commit cc40989
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/prod_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ name: Deploy Production
on:
push:
branches:
- 'feature/cont-deploy'
- 'main'


jobs:
deploy:
name: Deploy
Expand Down Expand Up @@ -38,4 +36,10 @@ jobs:
- name: Push web image
run: docker push registry.digitalocean.com/programming-languages/web:$(echo $GITHUB_SHA | head -c7)

# TODO: push to latest
# TODO: push to latest

- name: Push backend image
run: docker push registry.digitalocean.com/programming-languages/backend:latest

- name: Push web image
run: docker push registry.digitalocean.com/programming-languages/web:latest

0 comments on commit cc40989

Please sign in to comment.