chatwoot-develop/.github/workflows/deploy_ghcr.yml
Workflow config file is invalid. Please check your config file: yaml: line 30: mapping values are not allowed in this context
2026-01-02 08:37:32 -03:00

35 lines
714 B
YAML

name: Build and Push to GHCR
on:
push:
branches:
- chatwoot-jasmine # sua branch
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: ./docker
file: ./docker/Dockerfile
push: true
tags: ghcr.io/rodribm10/chatwoot-jasmine:latest