Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 10 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,15 @@ jobs:
capacity=${{ env.GPT_MIN_CAPACITY }} \
imageVersion="${IMAGE_TAG}" \
createdBy="Pipeline"
- name: Assign Contributor role to Service Principal
if: always()
run: |
echo "Assigning Contributor role to SPN for RG: ${{ env.RESOURCE_GROUP_NAME }}"
az role assignment create \
--assignee ${{ secrets.AZURE_CLIENT_ID }} \
--role "Contributor" \
--scope /subscriptions/${{ secrets.AZURE_SUBSCRIPTION_ID }}/resourceGroups/${{ env.RESOURCE_GROUP_NAME }}


- name: Get Deployment Output and extract Values
id: get_output
Expand Down Expand Up @@ -403,4 +412,4 @@ jobs:
if: always()
run: |
az logout
echo "Logged out from Azure."
echo "Logged out from Azure."
62 changes: 19 additions & 43 deletions src/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@tailwindcss/vite": "^4.0.0",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"axios": "^1.12.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.471.1",
Expand All @@ -29,7 +29,7 @@
"react-dropzone": "^14.3.5",
"react-icons": "^5.5.0",
"react-redux": "^9.1.2",
"react-router-dom": "^7.1.3",
"react-router-dom": "^7.5.2",
"react-syntax-highlighter": "^15.6.1",
"sql-formatter": "^15.4.11",
"tailwind-merge": "^2.6.0",
Expand Down