Some checks failed
Docker Build & Push SugarCRM 6.5 CE / build-and-push (push) Failing after 1m8s
32 lines
735 B
YAML
32 lines
735 B
YAML
name: Docker Build & Push SugarCRM 6.5 CE
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: linux
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Login to Gitea Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: git.kgessner.de
|
|
username: ${{ secrets.REGISTRY_USER }}
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: |
|
|
git.kgessner.de/luiicode/sugar-crm:6.5.26
|
|
git.kgessner.de/luiicode/sugar-crm:latest
|