From f1a3fd872f3c3ec4fea6b21585f0c750753281f4 Mon Sep 17 00:00:00 2001 From: Davidson Gomes Date: Sun, 9 Jun 2024 14:20:48 -0300 Subject: [PATCH] git actions v2 --- .github/workflows/publish_docker_image_v2.yml | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/publish_docker_image_v2.yml diff --git a/.github/workflows/publish_docker_image_v2.yml b/.github/workflows/publish_docker_image_v2.yml new file mode 100644 index 00000000..8a941b3f --- /dev/null +++ b/.github/workflows/publish_docker_image_v2.yml @@ -0,0 +1,48 @@ +name: Build Docker image + +on: + push: + branches: + - v2.0.0 + +jobs: + build_deploy: + name: Build and Deploy + runs-on: ubuntu-latest + 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: v2.0.0-alpha + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to Docker Hub + 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 }}