Skip to content

[EVOLUTION] active chat, without department, or agent #480

[EVOLUTION] active chat, without department, or agent

[EVOLUTION] active chat, without department, or agent #480

Workflow file for this run

name: Docker Builds
on:
push:
branches:
- 'master'
- 'dev'
tags:
- 'v*'
pull_request:
branches:
- 'master'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3.3.0
-
name: Docker meta
id: meta
uses: crazy-max/ghaction-docker-meta@v4.3.0
with:
images: dudanogueira/rocket.connect
-
name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Build and push
uses: docker/build-push-action@v3.3.0
with:
context: .
file: ./compose/production/django/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}