Added github action so heroku is deployed when a change is pushed to main branch

This commit is contained in:
Gregory Campbell
2021-11-23 21:49:24 -05:00
parent fbb1893ad5
commit da3662abc4
+17
View File
@@ -0,0 +1,17 @@
name: Deploy
on:
push:
branches:
- master
jobs:
build:
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: "gregs-rest-api-demo"
heroku_email: "gjcampbell777@gmail.com"