#115 - Heroku deploy in GitHub Actions

This commit is contained in:
Krzysztof Rewak
2022-04-28 15:41:23 +02:00
parent 6b2556c1da
commit 9a4d545ded
3 changed files with 25 additions and 8 deletions

17
.github/workflows/deploy.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Deploy
on:
push:
tags:
- v*
jobs:
deploy:
runs-on: ubuntu-20.04
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}}