Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
09a4850
new updated with all the profile links
venkatsai7794 Feb 24, 2026
79f0f98
Update README.md
venkatsai7794 Feb 24, 2026
7a11d9b
Update README.md
venkatsai7794 Feb 24, 2026
6b2e618
Initial portfolio comit
venkatsai7794 Mar 6, 2026
3621688
index file changes
venkatsai7794 Mar 6, 2026
ea07d38
Merge branch 'main' of https://github.com/venkatsai7794/personal_port…
venkatsai7794 Mar 6, 2026
144b4be
Add or update the Azure App Service build and deployment workflow config
venkatsai7794 Mar 6, 2026
e86c7d9
Remove the Azure App Service build and deployment workflow config
venkatsai7794 Mar 6, 2026
004e803
dash removed
venkatsai7794 Mar 6, 2026
1f7ecc2
Merge branch 'main' of https://github.com/venkatsai7794/personal_port…
venkatsai7794 Mar 6, 2026
794be7e
Add or update the Azure App Service build and deployment workflow config
venkatsai7794 Mar 6, 2026
5dfd842
contact changes
venkatsai7794 May 14, 2026
c794441
Merge branch 'main' of https://github.com/venkatsai7794/personal_port…
venkatsai7794 May 14, 2026
0afbf95
Update live portfolio resume link
venkatsai7794 May 14, 2026
4cff6b7
Update resume link on portfolio
venkatsai7794 May 14, 2026
6d73bc1
Merge branch 'main' of https://github.com/venkatsai7794/personal_port…
venkatsai7794 May 14, 2026
c1bc4a8
Update portfolio submodule
venkatsai7794 May 14, 2026
1fc3c01
Remove broken submodule reference
venkatsai7794 May 14, 2026
14b1b20
Updated portfolio
venkatsai7794 May 14, 2026
1132e0e
Merge branch 'main' of https://github.com/venkatsai7794/personal_port…
venkatsai7794 May 14, 2026
34c85bb
Fix GitHub Pages deployment
venkatsai7794 May 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions .github/workflows/main_venkatsai-portfolio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# 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 - venkatsai-portfolio

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read #This is required for actions/checkout

steps:
- uses: actions/checkout@v4

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

- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run test --if-present

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

deploy:
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write #This is required for requesting the JWT
contents: read #This is required for actions/checkout

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

- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_A4F0D24CFCF54878A8FF81D4DFCFB74D }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_61B1567911CC42F58A5B09C6267311B6 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_CEED2DA34D9A42A7ADEBBF2B06808704 }}

- name: 'Deploy to Azure Web App'
id: deploy-to-webapp
uses: azure/webapps-deploy@v3
with:
app-name: 'venkatsai-portfolio'
slot-name: 'Production'
package: .

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@ dist
.yarn/install-state.gz
.pnp.*

# End of https://www.toptal.com/developers/gitignore/api/node
# End of https://www.toptal.com/developers/gitignore/api/nodepersonal_portfolio/
Loading