Skip to content

Commit e81a5e3

Browse files
committed
workflow: changes on the deply script
1 parent 1707a5a commit e81a5e3

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
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: "maxbasecode@gmail.com"
13+
- name: Login Heroku CLI
14+
env:
15+
HEROKU_API_KEY: ${{secrets.HEROKU_API_KEY}}
16+
run: heroku login
17+
- name: Push Deploy
18+
env:
19+
HEROKU_API_KEY: ${{secrets.HEROKU_API_KEY}}
20+
run: heroku push -a basemaxrubytest

0 commit comments

Comments
 (0)