This repository has been archived by the owner on Apr 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
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 #116 from g12-4soat/develop
Merge Develop
- Loading branch information
Showing
185 changed files
with
6,731 additions
and
1,679 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: API Docker Publish Develop | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
workflow_run: | ||
workflows: ["Build API Docker Image"] | ||
types: | ||
- completed | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-to-docker-hub: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: docker login | ||
env: | ||
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | ||
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | ||
run: | | ||
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
- name: Build and Push Docker image | ||
run: | | ||
cd src/TechLanches | ||
TAG=$(date +%Y%m%d%H%M%S) | ||
docker build -f Dockerfile.API -t ${{secrets.DOCKER_USERNAME}}/techlanches-api:$TAG -t ${{secrets.DOCKER_USERNAME}}/techlanches-api:develop . --no-cache | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-api:$TAG | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-api:develop |
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,32 @@ | ||
name: API Docker Publish | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_run: | ||
workflows: ["Build API Docker Image"] | ||
types: | ||
- completed | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-to-docker-hub: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: docker login | ||
env: | ||
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | ||
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | ||
run: | | ||
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
- name: Build and Push Docker image | ||
run: | | ||
cd src/TechLanches | ||
TAG=$(date +%Y%m%d%H%M%S) | ||
docker build -f Dockerfile.API -t ${{secrets.DOCKER_USERNAME}}/techlanches-api:latest -t ${{secrets.DOCKER_USERNAME}}/techlanches-api:$TAG -t ${{secrets.DOCKER_USERNAME}}/techlanches-api:develop . --no-cache | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-api:$TAG | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-api:develop | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-api: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Worker Docker Publish Develop | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
workflow_run: | ||
workflows: ["Build Worker Docker Image"] | ||
types: | ||
- completed | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-to-docker-hub: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: docker login | ||
env: | ||
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | ||
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | ||
run: | | ||
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
- name: Build and Push Docker image | ||
run: | | ||
cd src/TechLanches | ||
TAG=$(date +%Y%m%d%H%M%S) | ||
docker build -f Dockerfile.Worker -t ${{secrets.DOCKER_USERNAME}}/techlanches-worker:$TAG -t ${{secrets.DOCKER_USERNAME}}/techlanches-worker:develop . --no-cache | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-worker:$TAG | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-worker:develop |
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,32 @@ | ||
name: Worker Docker Publish | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_run: | ||
workflows: ["Build Worker Docker Image"] | ||
types: | ||
- completed | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-to-docker-hub: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: docker login | ||
env: | ||
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | ||
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | ||
run: | | ||
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | ||
- name: Build and Push Docker image | ||
run: | | ||
cd src/TechLanches | ||
TAG=$(date +%Y%m%d%H%M%S) | ||
docker build -f Dockerfile.Worker -t ${{secrets.DOCKER_USERNAME}}/techlanches-worker:latest -t ${{secrets.DOCKER_USERNAME}}/techlanches-worker:$TAG -t ${{secrets.DOCKER_USERNAME}}/techlanches-worker:develop . --no-cache | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-worker:$TAG | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-worker:develop | ||
docker push ${{secrets.DOCKER_USERNAME}}/techlanches-worker:latest |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.