This commit is contained in:
Herb Raffaele 2020-02-18 12:46:13 -05:00 коммит произвёл GitHub
Родитель 79231173e7
Коммит 8567c94485
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 13 добавлений и 0 удалений

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

@ -2,6 +2,12 @@ name: Node.js CI
on: [push]
env:
AZURE_WEBAPP_NAME: ContosoWebAppX # set this to your application's name
AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
NODE_VERSION: '10.x' # set this to the node version to use
jobs:
build:
@ -20,5 +26,12 @@ jobs:
- run: npm install
- run: npm run build --if-present
- run: npm test
- name: 'Deploy to Azure WebApp'
uses: azure/webapps-deploy@v1
with:
app-name: ${{ env.AZURE_WEBAPP_NAME }}
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
env:
CI: true