Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bobbyiliev/test-helm-releases
Simple Helm Chart Releaser
https://github.com/bobbyiliev/test-helm-releases
actions charts github helm kubernetes
Last synced: 5 days ago
JSON representation
Simple Helm Chart Releaser
- Host: GitHub
- URL: https://github.com/bobbyiliev/test-helm-releases
- Owner: bobbyiliev
- Created: 2025-01-14T10:52:14.000Z (23 days ago)
- Default Branch: main
- Last Pushed: 2025-01-15T17:45:53.000Z (22 days ago)
- Last Synced: 2025-01-26T15:34:11.864Z (11 days ago)
- Topics: actions, charts, github, helm, kubernetes
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Test for Helm Charts releases
To deploy the Helm Chart to GitHub Pages, prepare a `gh-pages` branch with the Helm Chart files.
```bash
git checkout --orphan gh-pages
git rm -rf .
git commit --allow-empty -m "Initialize gh-pages branch"
git push origin gh-pages
```This creates a new branch empty branch `gh-pages` and pushes it to the remote repository which will be used to host the Helm Chart files.
The workflow file `.github/workflows/helm_release.yaml` is triggered when changes are made to the chart files in the `main` branch. The workflow will build the Helm Chart and deploy it to the `gh-pages` branch. If a release with the same version already exists, the workflow will skip the deployment.