Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Dec 18, 2023
1 parent 38bb8c1 commit d9ba570
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,19 @@ dagger mod install github.com/fluent-ci-templates/fastlane-pipeline@mod
| ----------- | ------------------------- |
| execLane | Executes a Fastlane lane |

```graphql
execLane(lane: String!, src: String): String
```typescript
execLane(
lane: string,
src: string | Directory | undefined = "."
): Promise<Container | string>
```

## Programmatic usage

You can also use this pipeline programmatically:

```ts
import { execLane } from "https://pkg.fluentci.io/fastlane_pipeline@v0.9.0/mod.ts";
import { execLane } from "https://pkg.fluentci.io/fastlane_pipeline@v0.9.1/mod.ts";

await execLane("buildRelease");
```
2 changes: 1 addition & 1 deletion ci.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { execLane } from "https://pkg.fluentci.io/fastlane_pipeline@v0.9.0/mod.ts";
import { execLane } from "https://pkg.fluentci.io/fastlane_pipeline@v0.9.1/mod.ts";

await execLane("buildRelease");

0 comments on commit d9ba570

Please sign in to comment.