mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
8 lines
275 B
JavaScript
8 lines
275 B
JavaScript
import { getCommit, getSecret } from "../../scripts/utils.mjs";
|
|
|
|
console.log("Submitting...");
|
|
const response = await fetch(getSecret("BENCHMARK_URL") + "?tag=_&commit=" + getCommit() + "&artifact_url=_", {
|
|
method: "POST",
|
|
});
|
|
console.log("Got status " + response.status);
|