This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Git Action To Build and Push Ocular Backend To DockerHub !! (#169)
* Add Git Action To Build and Push Ocular Backend To DockerHub !! * Update turbo.json * Update docker-build-and-push-ocular-backend.yml * Update docker-build-and-push-ocular-backend.yml * Update docker-build-and-push-ocular-backend.yml * Update docker-build-and-push-ocular-backend.yml
- Loading branch information
1 parent
8dde98d
commit c713aff
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
.github/workflows/docker-build-and-push-ocular-backend.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Build and Push Ocular Backend Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
push_to_docker_registry: | ||
name: Push Ocular Backend To Docker Hub | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check Out Branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log In To Docker | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{secrets.DOCKER_USERNAME}} | ||
password: ${{ secrets.DOCKER_TOKEN }} | ||
|
||
- name: Set Up Docker Builders | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Build and Push Ocular Backend Image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./ | ||
file: ./packages/ocular/Dockerfile.local | ||
push: true | ||
tags: | ||
ocularengineering/ocular-backend:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters