change load docker condition (#12548)
This commit is contained in:
parent
0d7b9df3bd
commit
0f1273aa57
|
|
@ -530,13 +530,13 @@ jobs:
|
|||
path: app/rts/node_modules/
|
||||
|
||||
- name: Build docker image
|
||||
if: success() && github.ref == 'refs/heads/release' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
|
||||
if: steps.run_result.outputs.run_result != 'success'
|
||||
working-directory: "."
|
||||
run: |
|
||||
docker build -t fatcontainer .
|
||||
|
||||
- name: Load docker image
|
||||
if: success() && github.ref == 'refs/heads/release' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
|
||||
if: steps.run_result.outputs.run_result != 'success'
|
||||
env:
|
||||
APPSMITH_LICENSE_KEY: ${{ secrets.APPSMITH_LICENSE_KEY }}
|
||||
working-directory: "."
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user