From 858398301acdefa426eb5354678c88863f985bc8 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Sun, 17 Dec 2023 10:40:31 -0500 Subject: [PATCH] feat: switch to nixpkg in github workflows flux cli change Signed-off-by: Devin Buhl --- .github/workflows/flux-hr-sync.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/flux-hr-sync.yaml b/.github/workflows/flux-hr-sync.yaml index df7a1cd745ddd..5aaeb2f017dbe 100644 --- a/.github/workflows/flux-hr-sync.yaml +++ b/.github/workflows/flux-hr-sync.yaml @@ -88,9 +88,9 @@ jobs: for r in "${repos[@]}"; do IFS=':' read -r cluster_name repo_namespace repo_name <<< "${r}" flux \ - --context "${cluster_name}" \ - --namespace "${repo_namespace}" \ - reconcile source helm "${repo_name}" + --context ${cluster_name} \ + --namespace ${repo_namespace} \ + reconcile source helm ${repo_name} done - if: ${{ github.event.inputs.clusterName != '' && github.event.inputs.helmRepoNamespace != '' && github.event.inputs.helmRepoName != '' }}