Skip to content

Commit

Permalink
chore: update workflows and clean task
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Buhl <devin@buhl.casa>
  • Loading branch information
onedr0p committed Jan 3, 2025
1 parent f29d41b commit ceb5e7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -47,5 +47,5 @@ jobs:
- name: Run configure task
run: task configure --yes

- name: Run clean
- name: Run clean task
run: task bootstrap:clean
5 changes: 1 addition & 4 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ceb5e7b

Please sign in to comment.