We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047f532 commit 432e7b0Copy full SHA for 432e7b0
build_plugs_libraries.ts
@@ -62,9 +62,9 @@ export async function updateVersionFile() {
62
}
63
64
const versionFilePath = "./public_version.ts";
65
- // Write version to file with date in YYYY-MM-DD format attached to the version
+ // Write version to file with date in YYYY-MM-DDTHH-MM-SSZ format attached to the version
66
const versionContent = `export const publicVersion = "${commitVersion}-${
67
- new Date().toISOString().split(".")[0].replaceAll(":", "-")
+ new Date().toISOString().split(".")[0].replaceAll(":", "-").concat("Z")
68
}";`;
69
70
await Deno.writeTextFile(versionFilePath, versionContent);
0 commit comments