Releases: Azure/webapps-deploy
Releases · Azure/webapps-deploy
v2.2.17: Releases/v2 final sidecar release (#488)
GitHub Action for Azure Web Apps and Web App for Containers
Automate your GitHub Actions workflow to deploy Azure Web Apps and Azure Web app for Containers using Azure Web App Publish Profile or using Azure Login.
Action supports publish profile for Azure Web Apps (both Windows and Linux) and Azure Web Apps for Containers (Linux only).
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@v2
with:
app-name: node-rn
publish-profile: ${{ secrets.azureWebAppPublishProfile }}
License
GitHub Action for Azure Web App is licensed under the MIT License.
Releases/v3 minor patch version release
This contains changes related to Sidecar
#487
Releases/v3 minor patch version release
Adding following changes:
#480
Releases/v3 minor patch version release
releases/v2 minor release
Releases/v3 minor patch version release
Releasing following changes
#466
releases/v2 minor release
Node version updated to 20 in webapps_deploy@v3
Node version updated to 20 in webapps_deploy@v3
Node version updated to 20 in webapps_deploy@v2
Node version updated to 20 in webapps_deploy@v2
Previous Next