Skip to content

Commit

Permalink
fix(.github/workflows/test_deploy.yaml): correct parameter name from …
Browse files Browse the repository at this point in the history
…run_id to run-id in GitHub Actions workflow

The parameter name for specifying the run ID in the GitHub Actions
workflow file was incorrect. Changing `run_id` to `run-id` aligns with
the correct syntax required by GitHub Actions, ensuring that the
workflow can correctly reference the run ID from a previous job. This
change is necessary for the proper functioning of dependent jobs within
the workflow.
  • Loading branch information
cybersiddhu committed Jul 15, 2024
1 parent 5fbe79b commit 44569bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
name: kubectl-config
path: /tmp/config
run_id: ${{ needs.deploy-setup.outputs.workflow_run_id }}
run-id: ${{ needs.deploy-setup.outputs.workflow_run_id }}
- name: list files in download folder
run: ls -l /tmp/config/

Expand Down

0 comments on commit 44569bd

Please sign in to comment.