Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yschindel committed Jan 20, 2025
1 parent 478a08c commit 3d37830
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

# Step 2: Log in to Docker Hub
# Step 2: Set up Docker Buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
install: true

# Step 3: Log in to Docker Hub
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
Expand All @@ -25,8 +31,8 @@ jobs:
# Step 3: Build and Push Docker Images
- name: Build and Push Docker Images
run: |
docker-compose -f docker-compose.yml build
docker-compose -f docker-compose.yml push
docker compose -f docker-compose.yml build
docker compose -f docker-compose.yml push
# Step 4: Deploy to Azure Web App
# - name: Deploy to Azure Web App
Expand Down

0 comments on commit 3d37830

Please sign in to comment.