Skip to content

Commit

Permalink
Update main_moodmelody.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
abecerrilsalas authored Aug 10, 2024
1 parent 4b7370d commit 4ccbb26
Showing 1 changed file with 12 additions and 41 deletions.
53 changes: 12 additions & 41 deletions .github/workflows/main_moodmelody.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# 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 - MoodMelody
name: Build and deploy Node.js app to Heroku - MoodMelody

on:
push:
Expand All @@ -21,51 +18,25 @@ jobs:
with:
node-version: '20'

- name: npm install, build, and test
- name: Install dependencies and build
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@v4
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 }}
permissions:
id-token: write #This is required for requesting the JWT

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

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

- name: Login to Azure
uses: azure/login@v2
- name: Set up Node.js version
uses: actions/setup-node@v3
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_F8A11BE6614446FD916E104C5AC2EB8A }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_EC40BDF772B2453DBF40A6B439B26EC2 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_EC28B7B750894AAD8E5E74CFED8ECD78 }}
node-version: '20'

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

- name: Install dependencies
run: npm install

- name: Deploy to Heroku
run: git push https://heroku:${{ secrets.HEROKU_API_KEY }}@git.heroku.com/MoodMelody.git HEAD:main

0 comments on commit 4ccbb26

Please sign in to comment.