Skip to content

Commit

Permalink
ci: deploy to heroku (#6136)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored May 11, 2022
1 parent fc5d90c commit 06bdc28
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/heroku.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Heroku deploy

on:
push:
branches:
- main
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy to Heroku

steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Deploy to Heroku
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 }}

0 comments on commit 06bdc28

Please sign in to comment.