Skip to content

Commit 0034c28

Browse files
authored
docs: patch typo; ignore cd on changes in docs folder only (#42)
1 parent 83a3836 commit 0034c28

File tree

3 files changed

+37
-31
lines changed

3 files changed

+37
-31
lines changed

.github/workflows/cd.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
paths-ignore:
8+
- "docs/**"
79
workflow_dispatch:
810
inputs:
911
production_release:

docs/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ result = client
402402
)
403403
)
404404
.method_two(args=SomeOtherMethodArgs(arg1="foo"))
405-
.execute()
405+
.send()
406406

407407
# Strongly typed as the return type of methodOne
408408
result_of_method_one = result.returns[0]
@@ -426,7 +426,7 @@ result = algorand
426426
)
427427
)
428428
.add_app_call_method_call(client.params.method_two(args=SomeOtherMethodArgs(arg1="foo")))
429-
.execute()
429+
.send()
430430

431431
# returns will contain a result object for each ABI method call in the transaction group
432432
for (return_value in result.returns) {

poetry.lock

Lines changed: 33 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)