https://github.com/slamdev/rules_helmdocs
https://github.com/slamdev/rules_helmdocs
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/slamdev/rules_helmdocs
- Owner: slamdev
- License: apache-2.0
- Created: 2022-04-15T10:30:15.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-19T20:43:39.000Z (over 1 year ago)
- Last Synced: 2025-01-29T14:45:16.338Z (about 1 year ago)
- Language: Starlark
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Bazel rules for helmdocs
## Installation
Include this in your WORKSPACE file:
```starlark
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "slamdev_rules_helmdocs",
url = "https://github.com/slamdev/rules_helmdocs/releases/download/0.0.0/slamdev_rules_helmdocs-v0.0.0.tar.gz",
sha256 = "",
)
load("@slamdev_rules_helmdocs//helmdocs:deps.bzl", "helmdocs_register_toolchains", "rules_helmdocs_dependencies")
rules_helmdocs_dependencies()
helmdocs_register_toolchains(
name = "helmdocs1_8_1",
helmdocs_version = "1.8.1",
)
```
> note, in the above, replace the version and sha256 with the one indicated
> in the release notes for rules_helmdocs.