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 months 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 (10 months ago)
- Default Branch: main
- Last Pushed: 2025-03-27T15:33:32.000Z (7 months ago)
- Last Synced: 2025-06-09T17:02:24.666Z (5 months ago)
- Topics: actions, charts, github, helm, kubernetes
- Homepage:
- Size: 31.3 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.
# Test for creating a new GitHub release
The `.github/workflows/tag_release.yaml` workflow file is triggered when a new tag is created.
The workflow will create a new release with the information from all PRs merged since the last release.