From 62ab099cc66e01e7cd57d0a420645c29c0ca961b Mon Sep 17 00:00:00 2001 From: Deniz Erdogan Date: Wed, 31 Jul 2024 18:59:51 +0200 Subject: [PATCH] test --- .github/workflows/diff-values.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/diff-values.yml b/.github/workflows/diff-values.yml index d8cfac372..7cf8af310 100644 --- a/.github/workflows/diff-values.yml +++ b/.github/workflows/diff-values.yml @@ -8,21 +8,15 @@ jobs: uses: actions/checkout@v4 - name: Create ~/.local/bin directory run: mkdir -p ~/.local/bin - - name: debug - run: | - echo -e '#!/bin/bash\necho "Current date is:"\ndate' | tee ~/.local/bin/debug_test - chmod +x ~/.local/bin/debug_test - debug_test - ~/.local/bin/debug_test - name: Create helmfile docker shim run: | echo 'docker run --rm -v "${PWD}:/wd" ghcr.io/helmfile/helmfile:latest helmfile $*' \ - tee ~/.local/bin/helmfile + | tee ~/.local/bin/helmfile chmod +x ~/.local/bin/helmfile - name: Create yq docker shim run: | echo 'docker run --rm -v "${PWD}:/wd" --entrypoint yq ghcr.io/linuxserver/yq:latest $*' \ - tee ~/.local/bin/yq + | tee ~/.local/bin/yq chmod +x ~/.local/bin/helmfile - name: Diff generated value files run: >