diff --git a/.github/workflows/heroku.yml b/.github/workflows/heroku.yml new file mode 100644 index 0000000..b7b20b3 --- /dev/null +++ b/.github/workflows/heroku.yml @@ -0,0 +1,17 @@ +name: Heroku + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: akhileshns/heroku-deploy@v3.12.12 + with: + heroku_api_key: ${{secrets.HEROKU_API_KEY}} + heroku_app_name: ${{secrets.HEROKU_APP_NAME}} + heroku_email: ${{secrets.HEROKU_EMAIL}} \ No newline at end of file