1
0
Fork 0

Enable manual workflow dispatch with configurable inputs in CI/CD pipeline

This commit is contained in:
Joao Gilberto Magalhaes 2026-02-18 13:15:56 -05:00
parent a577601e52
commit 53f5f39ba9

View file

@ -9,6 +9,16 @@ on:
tags: [ '*.*.*' ]
pull_request:
branches: [ master ]
workflow_dispatch: # Allow manual trigger
inputs:
push:
description: 'Push image to registry'
required: false
default: 'false'
type: choice
options:
- 'false'
- 'true'
env:
# github.repository as <account>/<repo>