Skip to content

Commit

Permalink
add fluentci.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jun 17, 2024
1 parent 5e154ec commit 1d4a46a
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,16 @@ jobs:
run: fluentci run --wasm codecov upload
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
publish:
needs: tests
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.41
- name: Publish package
run: deno publish --allow-slow-types
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ validate(
You can also use this pipeline programmatically:

```ts
import { validate, apply } from "https://pkg.fluentci.io/terragrunt_pipeline@v0.6.1/mod.ts";
import { validate, apply } from "@fluentci/terragrunt";

await validate(".");
await apply(".");
Expand Down
7 changes: 4 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "@fluentci/terragrunt",
"version": "0.7.0",
"exports": "./mod.ts",
"importMap": "import_map.json",
"tasks": {
"esm:add": "deno run -A https://esm.sh/v128 add",
"esm:update": "deno run -A https://esm.sh/v128 update",
"esm:remove": "deno run -A https://esm.sh/v128 remove",
"schema": "deno run -A src/dagger/schema.ts",
"clean": "rm -rf gen schema.graphql"
"esm:remove": "deno run -A https://esm.sh/v128 remove"
},
"fmt": {
"exclude": [
Expand Down
8 changes: 8 additions & 0 deletions fluentci.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
authors = [
"Tsiry Sandratraina <tsiry.sndr@fluentci.io>",
]
description = "CI/CD Plugin for Terragrunt"
license = "MIT"
name = "terragrunt"
version = "0.7.0"

0 comments on commit 1d4a46a

Please sign in to comment.