Skip to content

Commit

Permalink
Fix charts repo name in workflow call
Browse files Browse the repository at this point in the history
When the test charts release workflow is triggered by scheduling, it
cannot rely on input parameters as if it were triggered manually.
Instead, the charts repo name must come from the environment, where it
is computed precisely based on how the workflow is triggered.
  • Loading branch information
weyfonk authored and thardeck committed Oct 29, 2024
1 parent c6d4a0e commit 59a63de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-against-test-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,6 @@ jobs:
needs: push-test-rancher-charts
with:
ref: ${{ github.ref }}
charts_repo: ${{github.event.inputs.charts_repo}}
charts_repo: ${{ env.charts_repo }}
charts_branch: ${{ needs.push-test-rancher-charts.outputs.target_branch }}
fleet_version: 999.9.9+up9.9.9

0 comments on commit 59a63de

Please sign in to comment.