From 3a3528fdac491e0276a2eb325c755849a00c3207 Mon Sep 17 00:00:00 2001 From: phil Date: Thu, 11 Nov 2021 08:52:08 -0800 Subject: [PATCH] add test --- .github/workflows/deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0f621b3..1b2c97a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -50,12 +50,16 @@ jobs: path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} - name: 'Deploy to Azure' + id: dev-deploy uses: azure/webapps-deploy@v2 with: app-name: ${{ env.AZURE_WEBAPP_NAME }} publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} + - name: Verify dev + run: ./tests/site_status.sh ${{ steps.dev-deploy.outputs.webapp-url }} + deploy-test: name: Test Deployment runs-on: ubuntu-latest