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 86ffc52 commit 12b74ba
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 76 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ jobs:
GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }}
working-directory: example
- name: Run Dagger Pipelines
run: |
rm ../deno.lock
dagger run deno run -A ../src/dagger/runner.ts preview up
run: dagger run deno run -A ../src/dagger/runner.ts preview
working-directory: example
env:
GOOGLE_APPLICATION_CREDENTIALS: ./fluentci-086b644d4c53.json
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ up(
You can also use this pipeline programmatically:

```ts
import { preview, up } from "https://pkg.fluentci.io/[email protected].0/mod.ts";
import { preview, up } from "https://pkg.fluentci.io/[email protected].1/mod.ts";

await preview();
// await up();
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 {
preview,
up,
} from "https://pkg.fluentci.io/[email protected].0/mod.ts";
} from "https://pkg.fluentci.io/[email protected].1/mod.ts";

await preview();
await up();
120 changes: 53 additions & 67 deletions deno.lock

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

8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
export { Container } from "https://sdk.fluentci.io/z1/mod.ts";
import Client from "https://sdk.fluentci.io/z1/mod.ts";
export { Container } from "https://sdk.fluentci.io/v0.2.0/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/[email protected]/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/[email protected]";
import gql from "https://esm.sh/[email protected]";
export { gql };
Expand Down

0 comments on commit 12b74ba

Please sign in to comment.