Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

package and publish your helm chart to a registry such as chartmuseum or harbor.

License

Notifications You must be signed in to change notification settings

romnn/helm-push-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This action is deprecated and has been replaced by helm-deploy-action.

The new and improved helm-deploy-action offers support for pushing and deploying helm3 charts and should be used instead.

Helm push action (DEPRECATED)

GiHub action to package and publish your helm chart to a registry such as chartmuseum or harbor.

name: build and push chart
on: push

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: romnnn/helm-push-action@v1
      with:
        charts-dir: '.'
        chart-name: 'my-awesome-chart'
        force: true
        chart-version: '1.2.5'
        app-version: '1.2.5'
        registry: 'https://my.registry.com'
        user: '${{ secrets.HELM_REGISTRY_USER }}'
        password: ${{ secrets.HELM_REGISTRY_PASSWORD }}

License

MIT

About

package and publish your helm chart to a registry such as chartmuseum or harbor.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 56.3%
  • Dockerfile 43.7%