Skip to content

Release Pipeline

Release Pipeline #3

Workflow file for this run

name: Release Pipeline
on:
workflow_run:
workflows: ["Build Pipeline"]
types:
- completed
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
with:
name: build-artifacts
- name: Deploy to Azure App Service
uses: azure/webapps-deploy@v2
with:
app-name: test-app # Replace with your Azure App Service name
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}