Make sure develop branch does cleanup

Adjust testing flow

Bump chart version
This commit is contained in:
Jochem 2024-07-09 12:57:23 +02:00
parent e55ddb5781
commit df41fab40f
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
@ -43,11 +43,11 @@ jobs:
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --check-version-increment=false run: ct lint --target-branch ${{ github.event.repository.default_branch }} --check-version-increment=false
- name: Run chart-testing (lint & version) - name: Run chart-testing (lint & version)
if: github.ref == 'refs/heads/develop' if: github.event.pull_request.base.ref == 'main'
run: ct lint --target-branch main run: ct lint --target-branch main
- name: Create kind cluster - name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true' if: steps.list-changed.outputs.changed == 'true' || github.event.pull_request.base.ref == 'main'
uses: helm/kind-action@v1.10.0 uses: helm/kind-action@v1.10.0
- name: Run chart-testing (install) - name: Run chart-testing (install)
@ -55,5 +55,5 @@ jobs:
run: ct install --target-branch ${{ github.event.repository.default_branch }} --skip-clean-up run: ct install --target-branch ${{ github.event.repository.default_branch }} --skip-clean-up
- name: Run chart-testing (install & upgrades) - name: Run chart-testing (install & upgrades)
if: github.ref == 'refs/heads/develop' if: github.event.pull_request.base.ref == 'main'
run: ct install --target-branch main --skip-clean-up --upgrade run: ct install --target-branch main --upgrade

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: librenms name: librenms
description: LibreNMS is an autodiscovering PHP/MySQL-based network monitoring system. description: LibreNMS is an autodiscovering PHP/MySQL-based network monitoring system.
type: application type: application
version: 3.10.1 version: 3.11.0
appVersion: "24.5.0" appVersion: "24.5.0"
maintainers: maintainers:
- name: TheChef23 - name: TheChef23