-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove artifacthub-repo.yml and try to fix CI
Signed-off-by: Andriy Redko <[email protected]>
- Loading branch information
Showing
3 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ jobs: | |
git config user.email "[email protected]" | ||
- name: Set up Helm | ||
uses: azure/setup-helm@v3 | ||
uses: azure/setup-helm@v4 | ||
with: | ||
version: v3.14.1 | ||
|
||
|
@@ -41,28 +41,32 @@ jobs: | |
python-version: '3.10' | ||
|
||
- name: Set up chart-testing | ||
uses: helm/chart-testing-action@v2 | ||
# See please https://github.com/helm/chart-testing-action/issues/140 | ||
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
changed=$(ct list-changed) | ||
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }}) | ||
if [[ -n "$changed" ]]; then | ||
echo "changed=true" >> $GITHUB_OUTPUT | ||
echo "changed=true" >> "$GITHUB_OUTPUT" | ||
fi | ||
- name: Run chart-testing (lint) | ||
run: ct lint --config .github/ct.yml | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Create kind cluster | ||
uses: helm/kind-action@v1 | ||
uses: helm/kind-action@v1.10.0 | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Setup helmfile | ||
uses: mamezou-tech/[email protected] | ||
|
||
- name: Install prometheus | ||
run: helmfile -f charts/zipkin/ci/helmfile.yaml sync | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Run chart-testing (install) | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: ct install |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters