MCPcopy Create free account
hub / github.com/dagger/dagger / tag

Method tag

sdk/python/src/dagger/client/gen.py:9716–9728  ·  view source on GitHub ↗

Returns details of a tag. Parameters ---------- name: Tag's name (e.g., "v0.3.9").

(self, name: str)

Source from the content-addressed store, hash-verified

9714 return GitRef(_ctx)
9715
9716 def tag(self, name: str) -> GitRef:
9717 """Returns details of a tag.
9718
9719 Parameters
9720 ----------
9721 name:
9722 Tag's name (e.g., "v0.3.9").
9723 """
9724 _args = [
9725 Arg("name", name),
9726 ]
9727 _ctx = self._select("tag", _args)
9728 return GitRef(_ctx)
9729
9730 async def tags(
9731 self,

Callers 8

test_git_repositoryFunction · 0.45
test_container_buildFunction · 0.45
mainMethod · 0.45
mainMethod · 0.45
cloneMethod · 0.45
cloneMethod · 0.45
cloneMethod · 0.45
cloneMethod · 0.45

Calls 3

ArgClass · 0.90
_selectMethod · 0.80
GitRefClass · 0.70

Tested by 2

test_git_repositoryFunction · 0.36
test_container_buildFunction · 0.36