Skip to content

Commit

Permalink
Update Procedure_push_docker_images.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
YisDav committed Sep 27, 2024
1 parent c544714 commit 8c6161d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/Procedure_push_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
description: 'Docker image tag'
default: '4.10.0'
required: true
DOCKER_REFERENCE:
description: 'wazuh-docker reference'
default: 'v4.10.0'
required: false
PRODUCTS:
description: 'Comma-separated list of the image names to build and push'
default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer'
Expand Down Expand Up @@ -35,6 +39,11 @@ on:
default: '4.10.0'
required: true
type: string
DOCKER_REFERENCE:
description: 'wazuh-docker reference'
default: 'v4.10.0'
required: false
type: string
PRODUCTS:
description: 'Comma-separated list of the image names to build and push'
default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer'
Expand Down Expand Up @@ -76,6 +85,7 @@ jobs:
echo "---------------------------------------------"
echo "* ID: ${{ inputs.ID }}"
echo "* IMAGE_TAG: ${{ inputs.IMAGE_TAG }}"
echo "* DOCKER_REFERENCE: ${{ inputs.DOCKER_REFERENCE }}"
echo "* PRODUCTS: ${{ inputs.PRODUCTS }}"
echo "* FILEBEAT_MODULE_VERSION: ${{ inputs.FILEBEAT_MODULE_VERSION }}"
echo "* REVISION: ${{ inputs.REVISION }}"
Expand All @@ -85,7 +95,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
ref: ${{ inputs.DOCKER_REFERENCE }}

- name: Log in to Docker Hub
uses: docker/login-action@v3
Expand Down

0 comments on commit 8c6161d

Please sign in to comment.