Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the push_docker_images procedure workflow file #1518

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/Procedure_push_docker_images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

run-name: Launch Push Docker Images - Executed by @${{ github.actor }}
name: Push Docker Images

on:
workflow_dispatch:
inputs:
JENKINS_REFERENCE:
description: 'wazuh-jenkins reference'
required: true
default: 'master'
IMAGE_TAG:
description: 'Docker image tag'
required: true
default: '4.10.0'
DOCKER_REFERENCE:
description: 'wazuh-docker reference'
required: true
default: '4.10.0'
PRODUCTS:
description: 'Comma-separated list of the image names to build and push'
default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer'
required: true
FILEBEAT_MODULE_VERSION:
description: 'Filebeat module version'
required: true
REVISION:
description: 'Package revision'
required: true
PUSH_IMAGES:
description: 'Push images'
required: true
type: boolean
default: true
Loading