From ceb5e7b798b962b4c58bf4d3b0c7ce1c15d2146c Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Fri, 3 Jan 2025 09:48:24 -0500 Subject: [PATCH] chore: update workflows and clean task Signed-off-by: Devin Buhl --- .github/workflows/e2e.yaml | 4 ++-- Taskfile.yaml | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 2d420b7561a..d56aabb68e9 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -29,7 +29,7 @@ jobs: - name: Setup mise uses: jdx/mise-action@v2 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - name: Install Python dependencies run: mise run pip @@ -47,5 +47,5 @@ jobs: - name: Run configure task run: task configure --yes - - name: Run clean + - name: Run clean task run: task bootstrap:clean diff --git a/Taskfile.yaml b/Taskfile.yaml index a33d8748aa4..f99b1189015 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -42,10 +42,7 @@ tasks: - task: bootstrap:template - task: bootstrap:secrets - task: kubernetes:kubeconform - - > - {{if eq .HOME_SOPS_AGE_KEY_FILE_EXISTS "true"}} - echo "WARNING: SOPS Age key found in home directory, this may cause conflicts." - {{end}} + - '{{if eq .HOME_SOPS_AGE_KEY_FILE_EXISTS "true"}}echo "WARNING: SOPS Age key found in home directory, this may cause conflicts."{{end}}' vars: HOME_SOPS_AGE_KEY_FILE_EXISTS: sh: test -f ~/.config/sops/age/keys.txt && echo true || echo false