Skip to content

Commit

Permalink
Fix docker build path
Browse files Browse the repository at this point in the history
  • Loading branch information
mUusitalo committed Dec 16, 2023
1 parent 8b0f7b6 commit e4d13a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:

- name: Build and push image
run: |
docker build -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/kiltiskamera/auth:${{ github.sha }} app/backend
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/kiltiskamera/auth:${{ github.sha }}
docker build -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/kiltiskamera/backend:${{ github.sha }} app
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/kiltiskamera/backend:${{ github.sha }}
- name: Deploy from ACR
uses: azure/webapps-deploy@v2
with:
#publish-profile: ${{ secrets.PUBLISH_PROFILE }}
app-name: 'kiltiskamera'
images: ${{ secrets.REGISTRY_LOGIN_SERVER }}/kiltiskamera/auth:${{ github.sha }}
images: ${{ secrets.REGISTRY_LOGIN_SERVER }}/kiltiskamera/backend:${{ github.sha }}

- name: Azure logout
run: |
Expand Down

0 comments on commit e4d13a3

Please sign in to comment.