Move Dockerfile.app, Dockerfile.web, nginx/, php/, and docker-compose to core-php where they belong. Promote Dockerfile.core to root Dockerfile. Simplify deploy workflow to only build the CLI image. Co-Authored-By: Virgil <virgil@lethean.io>
17 lines
299 B
YAML
17 lines
299 B
YAML
# Core CLI Docker image build + push
|
|
|
|
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
uses: core/go-devops/.forgejo/workflows/docker-publish.yml@main
|
|
with:
|
|
image: lthn/core
|
|
dockerfile: Dockerfile
|
|
registry: docker.io
|
|
secrets: inherit
|