Skip to content

Commit

Permalink
Update azure-deploy-f24.yml
Browse files Browse the repository at this point in the history
Removed Excessive Escaping
  • Loading branch information
Mohtelsayed authored Oct 26, 2024
1 parent 031dd99 commit 3fc38d2
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/azure-deploy-f24.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,17 @@ jobs:

- name: Set up NodeBB
run: |
./nodebb setup '{\"url\":\"https://nodebb-elev8.azurewebsites.net:443\",
\"admin:username\": \"admin\",
\"admin:password\": \"${{ secrets.ADMIN_PASSWORD }}\",
\"admin:password:confirm\": \"${{ secrets.ADMIN_PASSWORD }}\",
\"admin:email\": \"[email protected]\",
\"database\": \"redis\",
\"redis:host\": \"${{ secrets.REDIS_HOST }}\",
\"redis:port\": \"6379\",
\"redis:password\": \"${{ secrets.REDIS_PASSWORD }}\" }'
./nodebb setup '{
"url": "https://nodebb-elev8.azurewebsites.net:443",
"admin:username": "admin",
"admin:password": "${{ secrets.ADMIN_PASSWORD }}",
"admin:password:confirm": "${{ secrets.ADMIN_PASSWORD }}",
"admin:email": "[email protected]",
"database": "redis",
"redis:host": "${{ secrets.REDIS_HOST }}",
"redis:port": "6379",
"redis:password": "${{ secrets.REDIS_PASSWORD }}"
}'
- name: 'Deploy to Azure Web App'
id: deploy-to-webapp
Expand Down

0 comments on commit 3fc38d2

Please sign in to comment.