#115 - Heroku deploy in GitHub Actions (#136)

This commit is contained in:
Krzysztof Rewak
2022-04-29 09:35:47 +02:00
committed by GitHub
parent 94da727fe4
commit 3404bf1da8
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}}