Fix yaml
This commit is contained in:
parent
2353e94d12
commit
442b6a6ff0
|
@ -13,18 +13,22 @@ on:
|
|||
type: string
|
||||
|
||||
jobs:
|
||||
build:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Login
|
||||
env:
|
||||
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
|
||||
run: heroku container:login
|
||||
env:
|
||||
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
|
||||
run: heroku container:login
|
||||
|
||||
- name: Push
|
||||
env:
|
||||
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
|
||||
run: heroku container:push ${{ inputs.imageName }} -a ${{ inputs.appName }} --recursive
|
||||
|
||||
- name: Release
|
||||
env:
|
||||
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
|
||||
|
|
|
@ -15,7 +15,7 @@ env:
|
|||
IMAGE: mango-v4
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
Loading…
Reference in New Issue