Skip to content

Commit

Permalink
Update docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
freeziyou authored Jan 29, 2024
1 parent d45c6f2 commit cf4c1ae
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,45 @@ name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
paths:
- '**'
- 'website/**'

jobs:
build:
build-main-app:
runs-on: ubuntu-latest

if: contains(github.event.head_commit.modified, 'website/') == false
steps:
- name: Check out the repo
uses: actions/checkout@v2

- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_ACCOUNT }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push Docker image
- name: Build and push main app Docker image
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
file: deploy/Dockerfile
push: true
tags: connectai/gitmaya:latest

build-website:
runs-on: ubuntu-latest
if: contains(github.event.head_commit.modified, 'website/')
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_ACCOUNT }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push website Docker image
uses: docker/build-push-action@v2
with:
context: website
file: deploy/Dockerfile.proxy
push: true
tags: connectai/gitmaya-proxy:latest

0 comments on commit cf4c1ae

Please sign in to comment.