Releases: Azure/webapps-deploy
Releases · Azure/webapps-deploy
Releasing v2.2.1
Fixing bug for multi-container support
Releasing v2.2.0
Support for new AppKind Kubeapp
GitHub Action for Azure Web Apps
Automate your GitHub Actions workflow to deploy Azure Web Apps.
Usage
Sample workflow to build and deploy a Web App to Azure using publish profile
# File: .github/workflows/workflow.yml
on: push
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# checkout the repo
- name: 'Checkout Github Action'
uses: actions/checkout@master
- name: Setup Node 10.x
uses: actions/setup-node@v1
with:
node-version: '10.x'
- name: 'npm install, build, and test'
run: |
npm install
npm run build --if-present
npm run test --if-present
- name: 'Run Azure webapp deploy action using publish profile credentials'
uses: azure/webapps-deploy@v1
with:
app-name: node-rn
publish-profile: ${{ secrets.azureWebAppPublishProfile }}
License
GitHub Action for Azure Web App is licensed under the MIT License.