forked from RemoteSync/librnms-helm-charts
Compare commits
7 Commits
librenms-4
...
librenms-4
Author | SHA1 | Date | |
---|---|---|---|
|
a4aae9d8bd | ||
|
b4a29df58c | ||
|
b03dcec8dd | ||
|
9bb7058da6 | ||
|
9746efa489 | ||
|
0c6c9d3bef | ||
|
69892fd155 |
22
.github/workflows/release.yml
vendored
22
.github/workflows/release.yml
vendored
@@ -7,6 +7,8 @@ jobs:
|
|||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@@ -31,4 +33,22 @@ jobs:
|
|||||||
- name: Run chart-releaser
|
- name: Run chart-releaser
|
||||||
uses: helm/chart-releaser-action@v1.7.0
|
uses: helm/chart-releaser-action@v1.7.0
|
||||||
env:
|
env:
|
||||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
|
||||||
|
# see https://github.com/helm/chart-releaser/issues/183
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Push charts to GHCR
|
||||||
|
run: |
|
||||||
|
shopt -s nullglob
|
||||||
|
for pkg in .cr-release-packages/*; do
|
||||||
|
if [ -z "${pkg:-}" ]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
helm push "${pkg}" "oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/charts"
|
||||||
|
done
|
@@ -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: 4.0.0
|
version: 4.0.1
|
||||||
appVersion: "25.3.0"
|
appVersion: "25.3.0"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: jochbru
|
- name: jochbru
|
||||||
|
Reference in New Issue
Block a user