diff --git a/tasks/secret-home/task.yaml b/tasks/secret-home/task.yaml index 1d38789..f6071de 100644 --- a/tasks/secret-home/task.yaml +++ b/tasks/secret-home/task.yaml @@ -24,6 +24,9 @@ spec: - name: extract image: python:3.11-slim workingDir: /workspace/shared/$(params.subdirectory) + env: + - name: HOME + value: /tekton/home script: | #!/usr/bin/env bash set -e @@ -37,4 +40,6 @@ spec: target="/tekton/home/$key_decoded" mkdir -p "$(dirname "$target")" cp "/workspace/credentials/$key" "$target" - done \ No newline at end of file + done + + ls -al /tekton/home \ No newline at end of file