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 e019d75 commit ef595a3
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions .github/workflows/check-generated-values.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,31 @@ jobs:
mkdir -p "${TMP_DIR}"
chmod 777 "${TMP_DIR}"
- name: Create helmfile docker shim
run: >
run: |
docker pull ghcr.io/helmfile/helmfile:latest
&& echo 'docker run
--rm
--volume "${TMP_DIR}:${TMP_DIR}"
--volume "${PWD}:/workdir"
--workdir /workdir
ghcr.io/helmfile/helmfile:latest helmfile $*'
echo 'docker run \
--rm \
--volume "${TMP_DIR}:${TMP_DIR}" \
--volume "${PWD}:/workdir" \
--workdir /workdir \
ghcr.io/helmfile/helmfile:latest helmfile $*' \
| tee ~/.local/bin/helmfile
&& chmod +x ~/.local/bin/helmfile
chmod +x ~/.local/bin/helmfile
- name: Create yq docker shim
run: >
run: |
docker pull mikefarah/yq:latest
&& echo 'docker run
--rm
--volume "${TMP_DIR}:${TMP_DIR}"
--volume "${PWD}:/workdir"
--workdir /workdir
mikefarah/yq:latest $*'
echo 'docker run \
--rm \
--volume "${TMP_DIR}:${TMP_DIR}" \
--volume "${PWD}:/workdir" \
--workdir /workdir \
mikefarah/yq:latest $*' \
| tee ~/.local/bin/yq
&& chmod +x ~/.local/bin/yq
chmod +x ~/.local/bin/yq
- name: Diff generated value files
run: >
for ENV_DIR in k8s/argocd/*; do
Expand Down

0 comments on commit ef595a3

Please sign in to comment.