27 lines
519 B
YAML
27 lines
519 B
YAML
name: Build Chatwoot
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- leal-cyber
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Debug Docker
|
|
run: |
|
|
whoami
|
|
docker --version
|
|
docker ps
|
|
ls -la /var/run/docker.sock
|
|
|
|
- name: Checkout
|
|
run: git clone --depth 1 https://github.com/chatwoot/chatwoot.git /source
|
|
|
|
- name: Build
|
|
run: |
|
|
cd /source
|
|
docker build -t gitea.lealcyber.com/akadmin/chatwoot:test .
|