We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d288002 commit 7a6e67dCopy full SHA for 7a6e67d
.github/workflows/deploy.yml
@@ -3,14 +3,15 @@ name: Deploy
3
on:
4
push:
5
branches:
6
- - main
+ - master
7
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
- - name: Deploy
14
- env:
15
- HEROKU_API_KEY: ${{secrets.HEROKU_API_KEY}}
16
- run: git push heroku main
+ - uses: akhileshns/heroku-deploy@v3.12.12 # This is the action
+ with:
+ heroku_api_key: ${{secrets.HEROKU_API_KEY}}
+ heroku_app_name: "basemaxrubytest" #Must be unique in Heroku
17
+ heroku_email: "miprio101@gmail.com"
0 commit comments