Skip to content

Commit

Permalink
Create a GitHub action to deploy the demo app on Azure
Browse files Browse the repository at this point in the history
  • Loading branch information
santoshyadavdev committed Jul 12, 2024
1 parent 724963c commit f773fa3
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/deploy-demo-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Deploy Demo App

on:
push:
branches:
- master

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install dependencies
run: npm ci

- name: Build the app
run: npm run build

- name: Log in to Azure
uses: azure/login@v1
with:
creds: ${{ secrets.azureenv }}

- name: Deploy to Azure Web App
uses: azure/webapps-deploy@v2
with:
app-name: Demo App
package: ${{ github.workspace }}/dist/apps/ngu-carousel-example/browser
6 changes: 6 additions & 0 deletions apps/ngu-carousel-example/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,12 @@
}
},
"defaultConfiguration": "production"
},
"deploy": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "npx ng build ngu-carousel-example"
}
}
}
}

0 comments on commit f773fa3

Please sign in to comment.