Skip to content

Releases: Azure/webapps-deploy

Release 2.2.4

28 Nov 06:35
Compare
Choose a tag to compare
  • Supporting the deployment with long commit message.
  • Updated the node version to 16.
  • Bumped up the action core version to 1.10.0.

Releasing v2.2.3

29 Jun 04:37
Compare
Choose a tag to compare

Supports windows container images with publishprofile.

Releasing v2.2.2

14 Jun 12:22
48f6584
Compare
Choose a tag to compare

Added commit message in zipDeploy payload

Releasing v2.2.1

10 Jun 15:11
9bd3ea4
Compare
Choose a tag to compare

Fixing bug for multi-container support

Releasing v2.2.0

24 May 12:45
676ed2b
Compare
Choose a tag to compare

Support for new AppKind Kubeapp

GitHub Action for Azure Web Apps

20 Sep 09:09
5f33a44
Compare
Choose a tag to compare

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.