Skip to content

Commit d971910

Browse files
authored
Merge pull request #96 from yknx4/feat/automatic-deployments
feat: heroku deployments
2 parents 5bc6f75 + 22a54c4 commit d971910

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/deployment.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Production Deploy
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: akhileshns/heroku-deploy@v3.12.12 # This is the action
13+
with:
14+
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
15+
heroku_app_name: "opencov-reloaded" #Must be unique in Heroku
16+
heroku_email: "yknx.4.b@gmail.com"

0 commit comments

Comments
 (0)