mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
Turns out we need this so that the services will pick up the new code This reverts commit c22dc71c49bc6e08e68ef21a92202163c5ac1c8d.
This commit is contained in:
parent
e070a0a5c1
commit
51f32006e7
12
.github/workflows/qa-deploy.yml
vendored
12
.github/workflows/qa-deploy.yml
vendored
@ -205,8 +205,20 @@ jobs:
|
|||||||
echo "::add-mask::$webapp_name"
|
echo "::add-mask::$webapp_name"
|
||||||
echo "::set-output name=webapp-name::$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
|
- name: Deploy App
|
||||||
uses: azure/webapps-deploy@798e43877120eda6a2a690a4f212c545e586ae31
|
uses: azure/webapps-deploy@798e43877120eda6a2a690a4f212c545e586ae31
|
||||||
with:
|
with:
|
||||||
app-name: ${{ steps.retrieve-secrets.outputs.webapp-name }}
|
app-name: ${{ steps.retrieve-secrets.outputs.webapp-name }}
|
||||||
package: ./${{ matrix.name }}.zip
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user