Skip to content

Commit 844e03d

Browse files
authored
Merge pull request #566 from wazuh/change/514-include-fleet-management-in-package-instalation
Include fleet management in package instalation
2 parents 01c5825 + 525273e commit 844e03d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Diff for: .github/workflows/5_builderpackage_dashboard.yml

+8
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ jobs:
142142
WAZUH_SECURITY_PLUGIN: ${{ steps.setup-variables.outputs.WAZUH_SECURITY_PLUGIN }}
143143
WAZUH_REPORT_PLUGIN: ${{ steps.setup-variables.outputs.WAZUH_REPORT_PLUGIN }}
144144
WAZUH_PLUGINS_CORE: ${{ steps.setup-variables.outputs.WAZUH_PLUGINS_CORE }}
145+
WAZUH_PLUGINS_FLEET: ${{ steps.setup-variables.outputs.WAZUH_PLUGINS_FLEET }}
145146
WAZUH_PLUGINS_CHECK_UPDATES: ${{ steps.setup-variables.outputs.WAZUH_PLUGINS_CHECK_UPDATES }}
146147
FINAL_NAME: ${{ steps.setup-variables.outputs.FINAL_NAME }}
147148
LATEST_NAME: ${{ steps.setup-variables.outputs.LATEST_NAME }}
@@ -194,6 +195,7 @@ jobs:
194195
WAZUH_SECURITY_PLUGIN=wazuh-security-dashboards-plugin_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_security_plugins }} | sed 's/\//-/g').zip
195196
WAZUH_REPORT_PLUGIN=reports-dashboards_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_report_plugins }} | sed 's/\//-/g').zip
196197
WAZUH_PLUGINS_CORE=wazuh-dashboard-plugins_wazuh-core_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip
198+
WAZUH_PLUGINS_FLEET=wazuh-dashboard-plugins_wazuh-fleet_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip
197199
WAZUH_PLUGINS_CHECK_UPDATES=wazuh-dashboard-plugins_wazuh-check-updates_${VERSION}-${REVISION}_$(echo ${{ inputs.reference_wazuh_plugins }} | sed 's/\//-/g').zip
198200
if [ "${{ inputs.is_stage }}" = "true" ]; then
199201
if [ "${{ inputs.system }}" = "deb" ]; then
@@ -223,6 +225,7 @@ jobs:
223225
echo "WAZUH_SECURITY_PLUGIN=$WAZUH_SECURITY_PLUGIN" >> $GITHUB_OUTPUT
224226
echo "WAZUH_REPORT_PLUGIN=$WAZUH_REPORT_PLUGIN" >> $GITHUB_OUTPUT
225227
echo "WAZUH_PLUGINS_CORE=$WAZUH_PLUGINS_CORE" >> $GITHUB_OUTPUT
228+
echo "WAZUH_PLUGINS_FLEET=$WAZUH_PLUGINS_FLEET" >> $GITHUB_OUTPUT
226229
echo "WAZUH_PLUGINS_CHECK_UPDATES=$WAZUH_PLUGINS_CHECK_UPDATES" >> $GITHUB_OUTPUT
227230
echo "FINAL_NAME=$FINAL_NAME" >> $GITHUB_OUTPUT
228231
echo "LATEST_NAME=$LATEST_NAME" >> $GITHUB_OUTPUT
@@ -321,6 +324,11 @@ jobs:
321324
with:
322325
name: ${{ needs.setup-variables.outputs.WAZUH_PLUGINS_CORE }}
323326
path: ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/plugins
327+
- name: Download plugins artifacts
328+
uses: actions/download-artifact@v4
329+
with:
330+
name: ${{ needs.setup-variables.outputs.WAZUH_PLUGINS_FLEET }}
331+
path: ${{ needs.setup-variables.outputs.CURRENT_DIR }}/artifacts/plugins
324332
- name: Download plugins artifacts
325333
uses: actions/download-artifact@v4
326334
with:

0 commit comments

Comments
 (0)