Skip to content

Commit

Permalink
try fix upload
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldisaro committed Apr 15, 2024
1 parent e0164c7 commit 01f2bb9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: app.zip
path: ${{ steps.make_artifact.outputs.artifact-path }}

deploy:
Expand All @@ -54,9 +55,7 @@ jobs:
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
path: ./app.zip


- name: Login to Azure
uses: azure/login@v2
with:
Expand All @@ -70,7 +69,7 @@ jobs:
resource-group-name: ${{ inputs.app_service_resource_group }}
app-name: ${{ inputs.app_service_name }}
slot-name: staging
package: ./app.zip
package: app.zip

- name: Check Staging Health
run: curl --retry 5 --retry-max-time 120 --retry-all-errors -f 'https://${{ inputs.app_service_name }}-staging.azurewebsites.net${{ inputs.healtcheck_path }}'
Expand Down

0 comments on commit 01f2bb9

Please sign in to comment.