Skip to content

Commit 7a6e67d

Browse files
committed
workflow: changes on the deply script 4
1 parent d288002 commit 7a6e67d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ name: Deploy
33
on:
44
push:
55
branches:
6-
- main
6+
- master
77

88
jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
13-
- name: Deploy
14-
env:
15-
HEROKU_API_KEY: ${{secrets.HEROKU_API_KEY}}
16-
run: git push heroku main
13+
- uses: akhileshns/heroku-deploy@v3.12.12 # This is the action
14+
with:
15+
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
16+
heroku_app_name: "basemaxrubytest" #Must be unique in Heroku
17+
heroku_email: "miprio101@gmail.com"

0 commit comments

Comments
 (0)