-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from ConnectAI-E/fix-at-user
Fix at user
- Loading branch information
Showing
5 changed files
with
343 additions
and
209 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,57 +1,62 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
paths: | ||
- '**' | ||
- 'website/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-main-app: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && !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 main app Docker image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: deploy/Dockerfile | ||
push: true | ||
tags: connectai/gitmaya:latest | ||
|
||
build-website: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.modified, 'website') }} | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: 'true' | ||
- 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: . | ||
file: deploy/Dockerfile.proxy | ||
push: true | ||
tags: connectai/gitmaya-proxy:latest | ||
- name: Build and push website Docker image-SaaS | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: deploy/Dockerfile.proxy.saas | ||
push: true | ||
tags: connectai/gitmaya-proxy:saas | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
paths: | ||
- '**' | ||
- 'website/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-main-app: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && !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 main app Docker image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: deploy/Dockerfile | ||
push: true | ||
tags: connectai/gitmaya:latest | ||
|
||
build-website: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.modified, 'website') }} | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: 'true' | ||
|
||
- 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: . | ||
file: deploy/Dockerfile.proxy | ||
push: true | ||
tags: connectai/gitmaya-proxy:latest | ||
|
||
- name: Build and push website Docker image-SaaS | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: deploy/Dockerfile.proxy.saas | ||
push: true | ||
tags: connectai/gitmaya-proxy:saas |
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
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
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
Oops, something went wrong.