Build #467
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 when a tag is created. | |
# | |
# This workflow is based on the `dev-environment` workflow. | |
name: Build | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Build app package (auto) | |
uses: ./.github/workflows/dev-environment.yml | |
with: | |
reference: ${{ github.ref_name }} | |
command: 'yarn build' | |
artifact_name: 'wazuh-${{ github.ref_name }}' | |
artifact_path: './wazuh/build' |