Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
deer-wmde committed Jul 31, 2024
1 parent cdc0a71 commit 3a210b7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/diff-values.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4
- name: debug
run: >
echo 'date' tee ~/.local/bin/debug_test &&
chmod o+x ~/.local/bin/debug_test &&
debug_test &&
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
chmod o+x ~/.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
chmod o+x ~/.local/bin/helmfile
chmod +x ~/.local/bin/helmfile
- name: Diff generated value files
run: >
for env_dir in k8s/argocd/*; do
Expand Down

0 comments on commit 3a210b7

Please sign in to comment.