-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
๐ chore: deploy.yml backend ๋ถํฐ ๋ง๋ค๊ฒ ์ค์
- Loading branch information
1 parent
de9da7b
commit 32d2f47
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,16 +48,16 @@ jobs: | |
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Build and push frontend Docker image | ||
run: | | ||
docker build -t ${{ secrets.DOCKER_USERNAME }}/frontend:latest -f packages/frontend/Dockerfile . | ||
docker push ${{ secrets.DOCKER_USERNAME }}/frontend:latest | ||
- name: Build and push backend Docker image | ||
run: | | ||
docker build -t ${{ secrets.DOCKER_USERNAME }}/backend:latest -f packages/backend/Dockerfile . | ||
docker push ${{ secrets.DOCKER_USERNAME }}/backend:latest | ||
- name: Build and push frontend Docker image | ||
run: | | ||
docker build -t ${{ secrets.DOCKER_USERNAME }}/frontend:latest -f packages/frontend/Dockerfile . | ||
docker push ${{ secrets.DOCKER_USERNAME }}/frontend:latest | ||
- name: Deploy to server | ||
uses: appleboy/[email protected] | ||
with: | ||
|