Skip to content

Commit

Permalink
Merge branch 'release/1.8.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidsonGomes committed May 27, 2024
2 parents 0ab0400 + b5ec79d commit 87bf433
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build_deploy:
name: Build and Deploy
runs-on: ubuntu-latest
runs-on: self-hosted
permissions:
contents: read
packages: write
Expand All @@ -23,7 +23,6 @@ jobs:
images: atendai/evolution-api
tags: |
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
49 changes: 49 additions & 0 deletions .github/workflows/publish_docker_image_homolog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build Docker image Homolog

on:
push:
branches:
- develop

jobs:
build_deploy:
name: Build and Deploy
runs-on: self-hosted
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: atendai/evolution-api
tags: |
type=semver,pattern=homolog
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Now in the manager, when logging in with the client's apikey, the listing only shows the instance corresponding to the provided apikey (only with MongoDB)
* New global mode for rabbitmq events
* Build in docker for linux/amd64, linux/arm64 platforms

### Fixed
* Correction in message formatting when generated by AI as markdown in typebot
Expand Down

0 comments on commit 87bf433

Please sign in to comment.