Merge pull request #27 from VAIBHAV7500/dependabot/npm_and_yarn/front… #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
description: "Manual Trigger" | |
jobs: | |
deploy: | |
name: "Deploy" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: akhileshns/heroku-deploy@v3.12.12 # This is the action | |
with: | |
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | |
heroku_app_name: "anime-web-app" #Must be unique in Heroku | |
heroku_email: "vbhvsolanki7500@gmail.com" | |
appdir: "backend" # <- This will point to the api folder in your project |