This commit is contained in:
Derek Worthen 2020-09-09 10:45:59 -07:00 коммит произвёл GitHub
Родитель 7e1b828cb2
Коммит 46b5e96f82
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 11 добавлений и 10 удалений

21
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -46,16 +46,17 @@ jobs:
SERVER_CD_ENABLED: true
GRAPHQL_API: ${{ secrets.GRAPHQL_API }}
deploy:
name: Deploy
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
needs:
- build
steps:
- name: deploy cient
- name: Deploy Client
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: pnpm deploy:client
env:
CLIENT_DEPLOY_AZURE_CONTAINER: ${{ secrets.CLIENT_DEPLOY_AZURE_CONTAINER }}
CLIENT_DEPLOY_AZURE_CONTAINER_KEY: ${{ secrets.CLIENT_DEPLOY_AZURE_CONTAINER_KEY }}
CLIENT_DEPLOY_AZURE_CONTAINER_KEY: ${{ secrets.CLIENT_DEPLOY_AZURE_CONTAINER_KEY }}
- name: Deploy Server
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: Azure/functions-action@v1.1.5
with:
app-name: ${{ secrets.SERVER_DEPLOY_AZURE_FUNCTION_APPNAME }}
package: ${{ GITUB_WORKSPACE }}/packages/server/deploy.zip
publish-profile: ${ secrets.AZURE_FUNCTIONAPP_PUBLISH_PROFILE }}