Add heroku action

This commit is contained in:
Miguel Nogueira 2020-07-25 00:28:44 +01:00 committed by GitHub
parent 62b063ee63
commit 64d418c590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
.github/workflows/main.yml vendored Normal file
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.3.6
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: "sj-staffmanagement"
heroku_email: ${{secrets.HEROKU_EMAIL}}