Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
e_oghabayen committed Oct 31, 2024
1 parent 0b4e288 commit 46b045b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/azure-deploy-f24.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,23 @@ jobs:
run: |
npm install https://github.com/CMU-313/nodebb-frontend-f24-d-buggers.git
- name: Build NodeBB
run: |
npm run build
- name: Prepare deployment package
run: |
mkdir deploy
cp -r build/* deploy/
cp package.json deploy/
cp package-lock.json deploy/
- name: Clean and prepare
run: |
rm -rf node_modules
npm cache clean --force
npm install --production
- name: 'Deploy to Azure Web App'
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
Expand All @@ -57,5 +74,7 @@ jobs:
slot-name: 'Production'
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_114CAAE57AF4486D9FDF1ED38DBB21FD }}
package: .
timeout-minutes: 10
respect-gitignore: true


0 comments on commit 46b045b

Please sign in to comment.