Skip to content

Commit

Permalink
fix: debug the go source as well as the docker image of helm-kubeconf…
Browse files Browse the repository at this point in the history
…orm-action and hopefully fix the pipeline
  • Loading branch information
ilyannn committed Jan 6, 2024
1 parent fd9bdb3 commit 98bf3b9
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,16 @@ jobs:
with:
fetch-depth: 0

- name: Prepare a folder that only contains charts
- name: Prepare a charts folder
run: |
mkdir -p charts
for dir in $(ls -d */); do
if [[ $dir != charts/ && $dir != .* ]] ; then
helm dependency build $dir
mv $dir charts/
fi
done
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
Expand All @@ -47,11 +48,8 @@ jobs:

- name: Generate and validate releases
uses: docker://ghcr.io/shivjm/helm-kubeconform-action:v0.2.0
# - name: Find Helm
# id: save_helm_path
# run: echo "::set-output name=HELM_PATH::$(which helm)"
#
# - name: Generate and validate releases
# uses: shivjm/[email protected]
# env:
# HELM: ${{ steps.save_helm_path.outputs.HELM_PATH }}
env:
CHARTS_DIRECTORY: charts
HELM_UPDATE_DEPENDENCIES: false
LOG_LEVEL: trace
LOG_JSON: false

0 comments on commit 98bf3b9

Please sign in to comment.