Manual build #63
Workflow file for this run
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
# This workflow builds a production-ready package from the given Git reference. | |
# Any branch, tag or commit SHA existing in the origin can be used. | |
# | |
# This workflow is based on the `dev-environment` workflow. | |
name: Manual build | |
on: | |
workflow_call: | |
inputs: | |
reference: | |
required: true | |
type: string | |
default: master | |
description: Source code reference (branch, tag or commit SHA) | |
workflow_dispatch: | |
inputs: | |
reference: | |
required: true | |
type: string | |
default: master | |
description: Source code reference (branch, tag or commit SHA) | |
jobs: | |
# Build an app package from the given source code reference. | |
build: | |
name: Build app package | |
uses: ./.github/workflows/dev-environment.yml | |
with: | |
reference: ${{ inputs.reference }} | |
command: 'yarn build' | |
artifact_name: 'wazuh-dashboard-plugins' | |
secrets: inherit | |
test-packages: | |
needs: build | |
name: Test packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Step 01 - Download the plugin's source code | |
uses: actions/checkout@v3 | |
with: | |
repository: wazuh/wazuh-dashboard-plugins | |
ref: ${{ inputs.reference }} | |
path: wazuh | |
- name: Step 02 - Get version and revision | |
run: | | |
echo "currentDir=$(pwd -P)" >> $GITHUB_ENV | |
echo "version=$(jq -r '.version' $(pwd)/wazuh/plugins/main/package.json)" >> $GITHUB_ENV | |
echo "revision=$(jq -r '.revision' $(pwd)/wazuh/plugins/main/package.json)" >> $GITHUB_ENV | |
echo "versionPlatform=$(jq -r '.pluginPlatform.version' $(pwd)/wazuh/plugins/main/package.json)" >> $GITHUB_ENV | |
- name: Step 03 - Download the plugin's source code | |
uses: actions/download-artifact@v3 | |
with: | |
name: wazuh-dashboard-plugins_${{ env.version }}-${{ env.revision }}_${{ inputs.reference }}.zip | |
path: ${{ env.currentDir }}/wazuh/scripts/test-packages/wazuh-dashboard-plugins_${{ env.version }}-${{ env.revision }}_${{ inputs.reference }}.zip | |
- name: Step 04 - Build the Docker image | |
run: | | |
echo "current=${{ env.currentDir }}" | |
cd ./wazuh/scripts/test-packages | |
docker build --build-arg OSD_VERSION=${{ env.versionPlatform }} --build-arg PACKAGE_NAME=wazuh-dashboard-plugins_${{ env.version }}-${{ env.revision }}_${{ inputs.reference }}.zip -f osd-test-packages.Dockerfile ./ |