Skip to content

Commit

Permalink
use Dagger v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Nov 17, 2023
1 parent 47363b4 commit 1f87bcc
Show file tree
Hide file tree
Showing 21 changed files with 129 additions and 136 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Fluent CI
uses: fluentci-io/setup-fluentci@v1
uses: fluentci-io/setup-fluentci@v2
- name: List Jobs
run: fluentci ls .
- name: Run Dagger Pipelines
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: deno install -A -r https://cli.fluentci.io -n fluentci
- name: Setup Dagger
run: |
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.3 sh
sudo mv bin/dagger /usr/local/bin
dagger version
- name: Run Dagger Pipelines
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zenith.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- name: Setup Dagger Zenith
run: |
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.3 sh
sudo mv bin/dagger /usr/local/bin
dagger version
- name: Setup Firebase Token
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ deploy(
You can also use this pipeline programmatically:

```typescript
import { deploy } from "https://pkg.fluentci.io/supabase_pipeline@v0.2.0/mod.ts";
import { deploy } from "https://pkg.fluentci.io/supabase_pipeline@v0.3.0/mod.ts";

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

await deploy();
3 changes: 1 addition & 2 deletions dagger.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"root": "",
"name": "supabase",
"sdkRuntime": "tsiry/dagger-sdk-deno"
"sdk": "github.com/fluentci-io/daggerverse/deno-sdk@main"
}
106 changes: 53 additions & 53 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,10 +1,10 @@
export { assertEquals } from "https://deno.land/std@0.191.0/testing/asserts.ts";
import Client from "https://sdk.fluentci.io/v0.2.0/mod.ts";
import Client from "https://sdk.fluentci.io/v0.3.0/mod.ts";
export default Client;

export { connect, uploadContext } from "https://sdk.fluentci.io/v0.2.0/mod.ts";
export { connect, uploadContext } from "https://sdk.fluentci.io/v0.3.0/mod.ts";
export { brightGreen } from "https://deno.land/std@0.191.0/fmt/colors.ts";
export { withDevbox } from "https://nix.fluentci.io/v0.5.2/src/dagger/steps.ts";
export { withDevbox } from "https://nix.fluentci.io/v0.5.3/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
Loading

0 comments on commit 1f87bcc

Please sign in to comment.