Skip to content

Latest commit

 

History

History
119 lines (75 loc) · 3.59 KB

File metadata and controls

119 lines (75 loc) · 3.59 KB

Icon GitHub Action: Parse chart URI

Parse chart URI

Marketplace Release License Stars PRs Welcome

Overview

Extracts the chart URI parts from a given chart URI. The chart URI should be in the format repository/name:version. For example: ghcr.io/my-org/my-repo/charts/my-application/my-repo:0.1.0. The output will be:

  • repository: ghcr.io/my-org/my-repo/charts/my-application
  • name: my-repo
  • version: 0.1.0

Usage

- uses: hoverkraft-tech/ci-github-container/actions/helm/parse-chart-uri@e4bf7a12228a2a4b5993d2d36b99b4dd0ec80bf5 # 0.32.1
  with:
    # Chart URI to parse.
    # This input is required.
    uri: ""

Inputs

Input Description Required Default
uri Chart URI to parse. true -

Outputs

Output Description
repository Repository part of the chart URI.
name Name part of the chart URI.
version Version part of the chart URI.

Contributing

Contributions are welcome! Please see the contributing guidelines for more details.

License

This project is licensed under the MIT License.

SPDX-License-Identifier: MIT

Copyright © 2026 hoverkraft

For more details, see the license.


This documentation was automatically generated by CI Dokumentor.