Skip to content

Commit

Permalink
chore: Fix job output need syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
trossibip committed Jul 25, 2024
1 parent fb74123 commit e3c206b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/app_service_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ 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
if: ${{ github.event.inputs.use-staging-slot == 'true' }}
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
Expand Down

0 comments on commit e3c206b

Please sign in to comment.