Merge pull request #30 from BaseMax/dependabot/bundler/rails-6.1.7.7 #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: akhileshns/heroku-deploy@v3.12.12 # This is the action | |
with: | |
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | |
heroku_app_name: "basemaxrubytest" | |
heroku_email: "miprio101@gmail.com" | |
justlogin: true | |
- run: heroku auth:whoami | |
- run: heroku builds:cancel -a basemaxrubytest | |
- uses: akhileshns/heroku-deploy@v3.12.12 # This is the action | |
with: | |
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | |
heroku_app_name: "basemaxrubytest" | |
heroku_email: "miprio101@gmail.com" |