Skip to content

Commit

Permalink
Add heroku deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
staeff committed Mar 14, 2022
1 parent 16e6b03 commit 4eba32f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deploy

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: akhileshns/[email protected] # This is the action
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: ${{secrets.HEROKU_PROJECT}} #Must be unique in Heroku
heroku_email: ${{secrets.HEROKU_MAIL}}

0 comments on commit 4eba32f

Please sign in to comment.