change load docker condition (#12548)

This commit is contained in:
yatinappsmith 2022-04-04 16:37:58 +05:30 committed by GitHub
parent 0d7b9df3bd
commit 0f1273aa57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: "."