Skip to content

Commit

Permalink
make it compatible with dagger v0.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Feb 8, 2024
1 parent 3858fa8 commit 5cec4c3
Show file tree
Hide file tree
Showing 6 changed files with 1,854 additions and 219 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ dagger mod install github.com/fluent-ci-templates/bun-pipeline@mod
```typescript
test(
src: string | Directory | undefined = ".",
bunVersion?: string
bunVersion: string = "latest"
): Promise<string>

run(
command: string,
src: string | Directory | undefined = ".",
bunVersion?: string
bunVersion: string = "latest"
): Promise<string>

```
Expand All @@ -78,7 +78,7 @@ run(
You can also use this pipeline programmatically:

```ts
import { test } from "https://pkg.fluentci.io/bun_pipeline@v0.6.2/mod.ts";
import { test } from "https://pkg.fluentci.io/bun_pipeline@v0.6.3/mod.ts";

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

await test();
Loading

0 comments on commit 5cec4c3

Please sign in to comment.