Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,21 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ciprotean
password: ${{ secrets.CIPROTEAN_DOCKER_PASS }}

- name: Build Docker image
id: build
run: |
docker build -t my-react-app:$GITHUB_SHA . > build.log 2>&1 || (cat build.log; exit 1)
docker build -t proteantecs/mlrun-ui-pt:${{ github.sha }} . > build.log 2>&1 || (cat build.log; exit 1)

- name: Push Docker image
if: success()
run: |
docker push proteantecs/mlrun-ui-pt:${{ github.sha }}

- name: Check for igz-controls error message
id: check-error
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
# build stage
# node:20.18.2-alpine used as 20-alpine
FROM quay.io/mlrun/node:20-alpine as build-stage
Expand Down