We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1707a5a commit e81a5e3Copy full SHA for e81a5e3
.github/workflows/deploy.yml
@@ -10,8 +10,11 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- 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"
+ - name: Login Heroku CLI
+ env:
+ HEROKU_API_KEY: ${{secrets.HEROKU_API_KEY}}
+ run: heroku login
+ - name: Push Deploy
18
19
20
+ run: heroku push -a basemaxrubytest
0 commit comments