From b2946af65f4e00d0ca3783fd0ea506822df750ba Mon Sep 17 00:00:00 2001 From: mUusitalo <73437699+mUusitalo@users.noreply.github.com> Date: Sat, 16 Dec 2023 11:53:14 +0200 Subject: [PATCH] Fix docker build path --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 674fd45..84df053 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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: |