https://github.com/marcofranssen/setup-chartmuseum
Allows to install chartmuseum in a GitHub actions workflow
https://github.com/marcofranssen/setup-chartmuseum
chartmuseum github-actions helm helm-charts
Last synced: 5 months ago
JSON representation
Allows to install chartmuseum in a GitHub actions workflow
- Host: GitHub
- URL: https://github.com/marcofranssen/setup-chartmuseum
- Owner: marcofranssen
- License: mit
- Created: 2022-12-23T13:10:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T12:04:11.000Z (over 1 year ago)
- Last Synced: 2025-03-17T13:26:18.097Z (over 1 year ago)
- Topics: chartmuseum, github-actions, helm, helm-charts
- Language: TypeScript
- Homepage:
- Size: 2.96 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Setup Chartmuseum
This Github action installs [Chartmuseum][chartmuseum].
## Usage
### Install only
Installs the `v0.15.0` release.
```yaml
steps:
- uses: marcofranssen/setup-chartmuseum@v0.1.0
id: chartmuseum
with:
chartmuseum-version: v0.15.0
- run: echo ${{ steps.chartmuseum.output.chartmuseum-version }}
```
### Bootup chartmuseum
```yaml
steps:
- uses: marcofranssen/setup-chartmuseum@v0.1.0
id: chartmuseum
with:
chartmuseum-bootup: true
- run: helm repo add my-repo ${{ steps.chartmuseum.output.chartmuseum-endpoint }}
```
[chartmuseum]: https://chartmuseum.com "Host your own Helm Chart Repository"