From da3662abc4580650e004a532196e068168111551 Mon Sep 17 00:00:00 2001 From: Gregory Campbell Date: Tue, 23 Nov 2021 21:49:24 -0500 Subject: [PATCH] Added github action so heroku is deployed when a change is pushed to main branch --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fc9ba3a --- /dev/null +++ b/.github/workflows/main.yml @@ -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" \ No newline at end of file