Files
ansible-runner/.gitea/workflows/build-image.yaml
master of disaster b8053bdc9f fix
2026-06-12 10:22:00 +02:00

29 lines
697 B
YAML

name: 🐳 Build Ansible Act Runner Image
on:
push:
branches:
- main
paths:
- 'docker/Dockerfile'
workflow_dispatch:
inputs:
no_cache:
description: 'Force rebuild without cache'
required: false
default: false
type: boolean
jobs:
build:
uses: docker/image-builder/.gitea/workflows/build.yaml@main
with:
image_name: ansible-act-runner
dockerfile_path: docker/Dockerfile
context_path: docker/
no_cache: ${{ inputs.no_cache || false }}
secrets:
TOKEN: ${{ secrets.TOKEN }}
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}