29 lines
620 B
YAML
29 lines
620 B
YAML
name: Docker
|
|
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- 'v*.*.*'
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
- '.gitignore'
|
|
- '.github/**'
|
|
- '!.github/workflows/docker.yml'
|
|
- '!.github/workflows/docker-reusable.yml'
|
|
- 'docker/**'
|
|
- '!docker/codex.Dockerfile'
|
|
- '!docker/docker-entrypoint.sh'
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
build-and-push:
|
|
name: Build and Push
|
|
uses: ./.github/workflows/docker-reusable.yml
|
|
with:
|
|
tag_latest: ${{ github.ref_name == github.event.repository.default_branch || startsWith(github.ref, 'refs/tags/') }}
|
|
secrets: inherit
|