CxWebApp/.gitea/workflows/build.yml
CxAI Agent 055e350108
Some checks are pending
build-and-push / image (push) Waiting to run
feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK)
2026-05-16 14:32:01 -05:00

29 lines
787 B
YAML

name: build-and-push
on:
push:
branches: [main, master]
tags: ['v*']
workflow_dispatch: {}
jobs:
image:
runs-on: cxai-hostinger
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to cxai registry
uses: docker/login-action@v3
with:
registry: registry.76-13-126-127.nip.io
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASS }}
- name: Build & push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
registry.76-13-126-127.nip.io/cxai/cxwebapp:latest
registry.76-13-126-127.nip.io/cxai/cxwebapp:${{ github.sha }}