Skip to content

Commit

Permalink
Merge pull request #6 from fluentci-io/fix/env-example
Browse files Browse the repository at this point in the history
fix: set env example path
  • Loading branch information
tsirysndr authored Nov 12, 2023
2 parents 9be7587 + a34aec7 commit c572515
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ fluentci # Run the pipeline
fluentci --help

Usage: fluentci [pipeline] [jobs...]
Version: 0.8.0
Version: 0.8.1

Description:

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

packages.default = pkgs.deno2nix.mkExecutable {
pname = "fluentci";
version = "0.6.4";
version = "0.8.1";

src = ./.;
lockfile = "./deno.lock";
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { brightGreen } from "./deps.ts";
export async function main() {
await new Command()
.name("fluentci")
.version("0.8.0")
.version("0.8.1")
.description(
`
.
Expand Down
1 change: 1 addition & 0 deletions src/cmd/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ async function run(
) {
await load({
envPath: ".fluentci/.env",
examplePath: ".fluentci/.env_required",
export: true,
});
if (pipeline === ".") {
Expand Down

0 comments on commit c572515

Please sign in to comment.