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 2996d41 commit a55c829Copy full SHA for a55c829
.github/workflows/publish.yml
@@ -11,6 +11,9 @@ on:
11
permissions:
12
contents: write
13
14
+env:
15
+ CI: true
16
+
17
jobs:
18
publish:
19
runs-on: ubuntu-latest
build.ts
@@ -47,6 +47,8 @@ const table = sizes.map(line).join("\n");
47
48
console.log(table);
49
50
+if (process.env.CI === "true") process.exit(0);
51
52
const readme = await Bun.file("./README.md").text();
53
const newReadme = readme.replace(
54
/(```x-sizes)[\s\S]*(```)/m,
0 commit comments