Skip to content

Commit

Permalink
update deno.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 26, 2023
1 parent 8967bb1 commit 7d24f65
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 69 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,5 @@ jobs:
sudo mv bin/dagger /usr/local/bin
dagger version
- name: Run Dagger Pipelines
run: |
rm ../deno.lock
dagger run deno run -A ../src/dagger/runner.ts
run: dagger run deno run -A ../src/dagger/runner.ts
working-directory: example
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test(src: String!): String
You can also use this pipeline programmatically :

```ts
import { test, build } from "https://pkg.fluentci.io/bazel_pipeline@v0.3.0/mod.ts";
import { test, build } from "https://pkg.fluentci.io/bazel_pipeline@v0.3.1/mod.ts";

await test();
await build();
Expand Down
2 changes: 1 addition & 1 deletion ci.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
test,
build,
} from "https://pkg.fluentci.io/bazel_pipeline@v0.3.0/mod.ts";
} from "https://pkg.fluentci.io/bazel_pipeline@v0.3.1/mod.ts";

await test();
await build();
114 changes: 53 additions & 61 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
export { assertEquals } from "https://deno.land/std@0.191.0/testing/asserts.ts";
import Client from "https://sdk.fluentci.io/z1/mod.ts";
import Client from "https://sdk.fluentci.io/v0.2.0/mod.ts";
export default Client;

export {
connect,
uploadContext,
CacheSharingMode,
} from "https://sdk.fluentci.io/z1/mod.ts";
} from "https://sdk.fluentci.io/v0.2.0/mod.ts";
export { brightGreen } from "https://deno.land/std@0.191.0/fmt/colors.ts";
export { withDevbox } from "https://nix.fluentci.io/zenith/src/dagger/steps.ts";
export { withDevbox } from "https://nix.fluentci.io/v0.5.2/src/dagger/steps.ts";
export { stringifyTree } from "https://esm.sh/stringify-tree@1.1.1";
import gql from "https://esm.sh/graphql-tag@2.12.6";
export { gql };
Expand Down

0 comments on commit 7d24f65

Please sign in to comment.