Compare commits

...

2 Commits

Author SHA1 Message Date
290272100f feat(tools): Changed chart metadata 2024-08-12 19:29:29 +02:00
d519464ace feat(actions): Add release workflow 2024-08-12 17:10:36 +02:00
3 changed files with 46 additions and 23 deletions

30
.github/workflows/release.yaml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Release Charts
on:
workflow_dispatch:
push:
branches:
- master
paths:
- charts/**
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

View File

@ -36,7 +36,7 @@ You can then run `helm search repo plcnk` to see the charts.
| Chart | Chart Version | App Version | Description |
| --------------------------------------------------------------------- | ------------- | ----------------- | --------------------------------------------------------------- |
| [it-tools](https://github.com/plcnk/charts/tree/main/charts/it-tools) | 0.1.0 | 2024.5.13-a0bc346 | Collection of handy online tools for developers, with great UX. |
| [it-tools](https://github.com/plcnk/charts/tree/main/charts/it-tools) | 1.0.0 | 2024.5.13-a0bc346 | Collection of handy online tools for developers, with great UX. |
## License

View File

@ -1,30 +1,23 @@
apiVersion: v2
name: it-tools
description: Collection of handy online tools for developers, with great UX.
icon: https://raw.githubusercontent.com/CorentinTh/it-tools/main/public/mstile-310x310.png
icon: https://raw.githubusercontent.com/walkxcode/dashboard-icons/main/png/it-tools-light.png
type: application
version: 1.0.0
appVersion: "2024.5.13-a0bc346"
home: https://github.com/plcnk/charts/tree/master/charts/it-tools
sources:
- https://github.com/CorentinTh/it-tools
maintainers:
- name: Romain Pluciennik
email: romain.pluciennik@gmail.com
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2024.5.13-a0bc346"
annotations:
artifacthub.io/changes: |
- kind: changed
description: Changed chart metadata
artifacthub.io/images: |
- name: it-tools
image: ghcr.io/corentinth/it-tools:2024.5.13-a0bc346
platforms:
- linux/amd64
- linux/arm64