Skip to content

Commit

Permalink
ci: fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
pradel committed Jul 17, 2024
1 parent 5d1e41f commit 2b7cff1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { readFileSync, writeFileSync } from "node:fs";
import { dirname, join } from "node:path";

const __dirname = dirname(new URL(import.meta.url).pathname);
const packageJsonPath = join(__dirname, "..", "package.json");
const flyTomlPath = join(__dirname, "..", "fly.toml");
const packageJsonPath = join(__dirname, "..", "apps", "web", "package.json");
const flyTomlPath = join(__dirname, "..", "apps", "web", "fly.toml");

/**
* Take the current version from package.json and replace the version in the
Expand Down

0 comments on commit 2b7cff1

Please sign in to comment.