Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Add Git Action To Build Ocular UI On Push To Main Branch!! (#168)
Browse files Browse the repository at this point in the history
* Add Git Action To Build Ocular Backend On Push To Main Branch!!

* Update docker-build-ocular-ui.yml
  • Loading branch information
louismurerwa authored Jul 16, 2024
1 parent c713aff commit 54bed92
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docker-build-ocular-ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build Ocular Web UI Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check Out Branch
uses: actions/checkout@v4

- name: Set Up Docker Builders
uses: docker/setup-buildx-action@v3

- name: Build Ocular UI Image
uses: docker/build-push-action@v6
with:
context: ./
file: ./packages/ocular-ui/Dockerfile
push: false
tags: ocular/ocular-ui:latest

0 comments on commit 54bed92

Please sign in to comment.