Add support for generate_presigned_dev_urls srcipt

This commit is contained in:
fcaffieri
2026-06-30 13:34:46 -03:00
parent 21c6a01579
commit fa8d6b3de9
2 changed files with 59 additions and 12 deletions
+43
View File
@@ -0,0 +1,43 @@
## wazuh-docker
Archivo: `.github/workflows/5_check_integration_tools.yml`
Step: **"Resolve context"** (job `prepare`)
A partir de la línea **179**, cambiar:
```yaml
echo "pr_head_ref=${{ needs.get_pr_info.outputs.pr_head_ref }}" >> $GITHUB_OUTPUT
echo "deployment_matrix=${{ needs.get_pr_info.outputs.deployment_matrix }}" >> $GITHUB_OUTPUT
```
por:
```yaml
echo 'pr_head_ref=${{ needs.get_pr_info.outputs.pr_head_ref }}' >> $GITHUB_OUTPUT
echo 'deployment_matrix=${{ needs.get_pr_info.outputs.deployment_matrix }}' >> $GITHUB_OUTPUT
```
---
## wazuh-ansible
Archivo: `.github/workflows/5_check_integration_tools.yaml`
Step: **"Resolve context"** (job `prepare`)
A partir de la línea **216**, cambiar:
```yaml
echo "pr_head_ref=${{ needs.get_pr_info.outputs.pr_head_ref }}" >> $GITHUB_OUTPUT
echo "deployment_matrix=${{ needs.get_pr_info.outputs.deployment_matrix }}" >> $GITHUB_OUTPUT
```
por:
```yaml
echo 'pr_head_ref=${{ needs.get_pr_info.outputs.pr_head_ref }}' >> $GITHUB_OUTPUT
echo 'deployment_matrix=${{ needs.get_pr_info.outputs.deployment_matrix }}' >> $GITHUB_OUTPUT
```
(Las 4 líneas siguientes del mismo `else``os_list`, `environment`, `commit_list`,
`issue_url` — no se tocan, ya están bien.)
---