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 25, 2023
1 parent d4a41bc commit 95aa7d7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 22 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ 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
env:
SPIN_AUTH_TOKEN: ${{ secrets.SPIN_AUTH_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ deploy(
You can also use this pipeline programmatically:

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

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

await build();
await deploy();
28 changes: 14 additions & 14 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/[email protected]/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/[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 95aa7d7

Please sign in to comment.