We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6ebc63 commit e78e2c7Copy full SHA for e78e2c7
.github/workflows/docker-deploy.yml
@@ -47,6 +47,11 @@ jobs:
47
uses: azure/login@v1
48
with:
49
creds: ${{ secrets.AZURE_CREDENTIALS }}
50
+ - name: Assert required App Service secrets are set
51
+ run: |
52
+ if [ -z "${{ secrets.EDITOR_APP_NAME }}" ]; then echo "ERROR: secrets.EDITOR_APP_NAME is not set"; exit 1; fi
53
+ if [ -z "${{ secrets.RESOURCE_GROUP }}" ]; then echo "ERROR: secrets.RESOURCE_GROUP is not set"; exit 1; fi
54
+ if [ -z "${{ secrets.EDITOR_API_APP_NAME }}" ]; then echo "ERROR: secrets.EDITOR_API_APP_NAME is not set"; exit 1; fi
55
56
- name: Deploy editor to App Service (container)
57
run: |
0 commit comments