diff options
author | 2022-02-13 11:28:35 -0800 | |
---|---|---|
committer | 2022-02-13 11:28:35 -0800 | |
commit | 88a8a24cb10716cd3967d03cc0d4b34bfc82eda2 (patch) | |
tree | f119ce8b5cb90f7372a5d338b8633589e2d0fee6 | |
parent | Merge #133 - CI refactor (diff) |
CI: pass KUBECONFIG secret to build workflow
Reusable workflows don't have access to secrets, even in this case where
the workflow is local.
-rw-r--r-- | .github/workflows/main.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 516a1d6..f28ab61 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -24,3 +24,5 @@ jobs: with: artifact: ${{ needs.build.outputs.artifact }} tag: ${{ needs.build.outputs.tag }} + secrets: + KUBECONFIG: ${{ secrets.KUBECONFIG }} |