You've already forked DataMate
31 lines
719 B
YAML
31 lines
719 B
YAML
name: Runtime Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
paths:
|
|
- 'runtime/ops/**'
|
|
- 'runtime/python-executor/**'
|
|
- 'scripts/images/runtime/**'
|
|
- '.github/workflows/docker-image-runtime.yml'
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
paths:
|
|
- 'runtime/ops/**'
|
|
- 'runtime/python-executor/**'
|
|
- 'scripts/images/runtime/**'
|
|
- '.github/workflows/docker-image-runtime.yml'
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
call-docker-build:
|
|
name: Build and Push Runtime Docker Image
|
|
uses: ./.github/workflows/docker-images-reusable.yml
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
with:
|
|
service_name: runtime
|
|
build_dir: .
|