From e3c206ba7c20d215808ade69fc426b8fead8318b Mon Sep 17 00:00:00 2001 From: "tommaso.rossi" Date: Thu, 25 Jul 2024 13:18:46 +0200 Subject: [PATCH] chore: Fix job output need syntax --- .github/workflows/app_service_deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/app_service_deploy.yaml b/.github/workflows/app_service_deploy.yaml index 8390ceb..607a37b 100644 --- a/.github/workflows/app_service_deploy.yaml +++ b/.github/workflows/app_service_deploy.yaml @@ -105,7 +105,7 @@ jobs: with: resource-group-name: ${{ env.RESOURCE_GROUP_NAME }} app-name: ${{ env.FUNCTION_APP_NAME }} - images: ${{ jobs.build-and-push-image.outputs.image-tags }} + images: ${{ needs.build-and-push-image.outputs.image-tags }} - name: Deploy to Staging Slot uses: azure/webapps-deploy@de617f46172a906d0617bb0e50d81e9e3aec24c8 # v3.0.1 @@ -113,7 +113,7 @@ jobs: with: resource-group-name: ${{ env.RESOURCE_GROUP_NAME }} app-name: ${{ env.FUNCTION_APP_NAME }} - images: ${{ jobs.build-and-push-image.outputs.image-tags }} + images: ${{ needs.build-and-push-image.outputs.image-tags }} slot-name: staging - name: Ping Staging Health