Skip to content

Commit

Permalink
💚 Atualiza fluxo de CI e imagem do Docker para a última versão
Browse files Browse the repository at this point in the history
Foi adicionado o fluxo de CI de HLG e foi realizada a atualização da imagem Docker do aplicativo 'clean-architecture' para a versão 'latest' no arquivo docker-compose. Além disso, foi substituída a badge do CI de Desenvolvimento pela do CI de HLG no README.
  • Loading branch information
diegosneves committed Apr 16, 2024
1 parent 8d7c87b commit 7c3f837
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-hlg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Get branch name
shell: bash
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/*/} | cut -d'/' -f2)" >> $GITHUB_ENV
run: echo BRANCH_NAME=${{ github.base_ref }} >> $GITHUB_ENV

- name: Setup Java
uses: actions/setup-java@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Clean Architecture
[![CI Prod](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-prod.yaml/badge.svg)](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-prod.yaml) [![CI Develop](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-develop.yaml/badge.svg)](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-develop.yaml)
[![CI Prod](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-prod.yaml/badge.svg)](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-prod.yaml) [![CI HLG](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-hlg.yaml/badge.svg)](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-hlg.yaml) [![CI Develop](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-develop.yaml/badge.svg)](https://github.com/diegosneves/clean-architecture/actions/workflows/ci-develop.yaml)

A Clean Architecture é um princípio de design de software avançado que defende a separação de responsabilidades no sistema de software. A ideia principal por trás da Clean Architecture é a independência do código-fonte em relação aos detalhes. Essas dependências são extraídas para as camadas externas do sistema por meio de abstrações e inversão de controle.

Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- db-mysql-clean:/var/lib/postgresql/data

clean-app:
image: diegoneves/clean-architecture:0.1.0
image: diegoneves/clean-architecture:latest
container_name: clean_architecture_demo
ports:
- "8080:8080"
Expand Down

0 comments on commit 7c3f837

Please sign in to comment.