mirror of
https://github.com/outbackdingo/n8n-chart.git
synced 2026-08-25 14:53:31 +00:00
fix: upgrade n8n version & add some default configs (#8)
* try to fix gh action * fix(ci): fix test pods * fix: add env config for logs and healthcheck * fix(deps): Upgrade n8n version Co-authored-by: a5r0n <[email protected]>
This commit is contained in:
@@ -14,7 +14,7 @@ jobs:
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v1
|
||||
with:
|
||||
version: v3.4.0
|
||||
version: v3.8.1
|
||||
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
@@ -23,20 +23,24 @@ jobs:
|
||||
- name: Set up chart-testing
|
||||
uses: helm/[email protected]
|
||||
|
||||
- name: Add helm repos
|
||||
run: |
|
||||
helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
|
||||
- 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 }} --chart-dirs .)
|
||||
if [[ -n "$changed" ]]; then
|
||||
echo "::set-output name=changed::true"
|
||||
fi
|
||||
|
||||
- name: Run chart-testing (lint)
|
||||
run: ct lint
|
||||
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --chart-dirs . --validate-maintainers=false
|
||||
|
||||
- name: Create kind cluster
|
||||
uses: helm/[email protected]
|
||||
if: steps.list-changed.outputs.changed == 'true'
|
||||
|
||||
- name: Run chart-testing (install)
|
||||
run: ct install
|
||||
run: ct install --target-branch ${{ github.event.repository.default_branch }} --chart-dirs .
|
||||
Reference in New Issue
Block a user