Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
icandoit
Browse files Browse the repository at this point in the history
  • Loading branch information
yjm080821 committed Aug 26, 2024
1 parent 08b1374 commit c58032b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/azure-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and Push Docker image
- name: Build and Push Docker image for Client
run: |
docker buildx build --platform linux/amd64 -t ${{ vars.AZURE_CLIENT_ID }}/$IMAGE_NAME:latest . --push
env:
IMAGE_NAME: streetree # 사용자가 사용할 이미지 이름을 여기에 적어야 합니다
docker buildx build --platform linux/amd64 -f applications/client/Dockerfile -t ${{ vars.AZURE_CLIENT_ID }}/client:latest . --push
- name: Build and Push Docker image for Server
run: |
docker buildx build --platform linux/amd64 -f applications/server/Dockerfile -t ${{ vars.AZURE_CLIENT_ID }}/server:latest . --push
- name: Provision Infrastructure
run: azd provision --no-prompt
Expand Down

0 comments on commit c58032b

Please sign in to comment.