1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-11 16:18:14 -05:00

Revert "removing unneeded code from the QA deploy workflow ()". ()

Turns out we need this so that the services will pick up the new code

This reverts commit c22dc71c49bc6e08e68ef21a92202163c5ac1c8d.
This commit is contained in:
Joseph Flinn 2021-09-13 07:08:32 -07:00 committed by GitHub
parent e070a0a5c1
commit 51f32006e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -205,8 +205,20 @@ jobs:
echo "::add-mask::$webapp_name"
echo "::set-output name=webapp-name::$webapp_name"
- name: Stop App Service
if: false
env:
AZURE_RESOURCE_GROUP: "bw-qa-env"
run: az webapp stop --name ${{ steps.retrieve-secrets.outputs.webapp-name }} --resource-group $AZURE_RESOURCE_GROUP
- name: Deploy App
uses: azure/webapps-deploy@798e43877120eda6a2a690a4f212c545e586ae31
with:
app-name: ${{ steps.retrieve-secrets.outputs.webapp-name }}
package: ./${{ matrix.name }}.zip
- name: Start App Service
if: false
env:
AZURE_RESOURCE_GROUP: "bw-qa-env"
run: az webapp start --name ${{ steps.retrieve-secrets.outputs.webapp-name }} --resource-group $AZURE_RESOURCE_GROUP