Skip to content

Commit

Permalink
docs: add load site (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle authored May 12, 2023
1 parent 675f052 commit 89d6c13
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/image.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
<!-- Generated with Stardoc: http://skydoc.bazel.build -->


To load these rules, add this to the top of your `BUILD` file:

```starlark
load("@rules_oci//oci:defs.bzl", ...)
```


<a id="#oci_image_rule"></a>

Expand Down
6 changes: 6 additions & 0 deletions docs/push.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
<!-- Generated with Stardoc: http://skydoc.bazel.build -->


To load these rules, add this to the top of your `BUILD` file:

```starlark
load("@rules_oci//oci:defs.bzl", ...)
```


<a id="#oci_push_rule"></a>

Expand Down
8 changes: 7 additions & 1 deletion oci/defs.bzl
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
""
"""
To load these rules, add this to the top of your `BUILD` file:
```starlark
load("@rules_oci//oci:defs.bzl", ...)
```
"""

load("//oci/private:tarball.bzl", _oci_tarball = "oci_tarball")
load("//oci/private:image.bzl", _oci_image = "oci_image")
Expand Down

0 comments on commit 89d6c13

Please sign in to comment.