Test package #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
run-name: Test package | |
on: | |
workflow_dispatch: | |
jobs: | |
build-binaries-agent-macos-packages: | |
runs-on: ubuntu-latest | |
timeout-minutes: 50 | |
name: Test package | |
steps: | |
- name: Checkout the wazuh-agent repository | |
uses: actions/checkout@v4 | |
with: | |
repository: wazuh/wazuh-agent | |
ref: enhancement/137-pkg-build-trigger | |
- name: Call package build workflow and wait | |
id: workflow_call | |
uses: ./.github/actions/call_workflow_and_wait | |
with: | |
ref: change/137-setup-pkg-build-workflow-for-macos | |
repository: wazuh-agent-packages | |
workflow: packages-build-macos-agent.yml | |
token: ${{ secrets.CI_WAZUH_AGENT_PACKAGES_CLASSIC }} | |
- uses: actions/download-artifact@v4 | |
with: | |
repository: wazuh-agent-packages | |
name: tested-wazuh-agent-package | |
github-token: ${{ secrets.CI_WAZUH_AGENT_PACKAGES_CLASSIC }} | |
run-id: ${{ steps.workflow_call.outputs.dispatched_workflow_id }} |