Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanyam-2026 committed Jan 21, 2024
2 parents ec608c3 + 9bd4de3 commit 4c6821a
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/main_iipsacademics.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy Node.js app to Azure Web App - iipsacademics

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run test --if-present
- name: Zip artifact for deployment
run: zip release.zip ./* -r

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
with:
name: node-app
path: release.zip

deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
with:
name: node-app

- name: Unzip artifact for deployment
run: unzip release.zip

- name: 'Deploy to Azure Web App'
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'iipsacademics'
slot-name: 'Production'
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_9452906E46574314AFDCE875E5D58EAE }}
package: .
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
margin-top: 1rem;
overflow-x: auto;
background-color: #e9eaff;

}

/* Syntax Highlighter Styles */
Expand Down
2 changes: 2 additions & 0 deletions src/components/DashboardComponents/FileComponent/Header.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@
transition: background-color 0.3s ease;
}
.custom-btn2 {

margin-top: .9em;

margin-left: 1.5em;
font-weight: bold;
background-color: #fbf7ea;
Expand Down
1 change: 1 addition & 0 deletions src/components/DashboardComponents/SubBar/SubBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
font-size: large;
padding-left: 10px;


}

.breadcrumb-nav:hover {
Expand Down

0 comments on commit 4c6821a

Please sign in to comment.