Skip to content

Commit

Permalink
Address Shellcheck errors (from Lint check)
Browse files Browse the repository at this point in the history
  • Loading branch information
dj-maisy committed Jan 20, 2025
1 parent 2db2315 commit 4558248
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ jobs:
- name: Helm template
run: |
mkdir helm-dist
for c in $(ls charts)
do
helm template "${c}" "charts/${c}" --output-dir helm-dist
for _chart in charts/*; do
helm template "$(basename "$_chart")" "$_chart" --output-dir helm-dist
done
- name: Read Kubernetes version from /kubernetes_version
run: "grep KUBERNETES_VERSION kubernetes_version >> $GITHUB_ENV"
run: grep KUBERNETES_VERSION kubernetes_version >> "$GITHUB_ENV"

- name: kubeconform
uses: docker://ghcr.io/yannh/kubeconform:latest-alpine
Expand Down

0 comments on commit 4558248

Please sign in to comment.